aws-cdk-lib.aws_glue.CfnConnection.PhysicalConnectionRequirementsProperty

interface PhysicalConnectionRequirementsProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnConnection.PhysicalConnectionRequirementsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnConnection_PhysicalConnectionRequirementsProperty
Javasoftware.amazon.awscdk.services.glue.CfnConnection.PhysicalConnectionRequirementsProperty
Pythonaws_cdk.aws_glue.CfnConnection.PhysicalConnectionRequirementsProperty
TypeScript aws-cdk-lib » aws_glue » CfnConnection » PhysicalConnectionRequirementsProperty

Specifies the physical requirements for a connection.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const physicalConnectionRequirementsProperty: glue.CfnConnection.PhysicalConnectionRequirementsProperty = {
  availabilityZone: 'availabilityZone',
  securityGroupIdList: ['securityGroupIdList'],
  subnetId: 'subnetId',
};

Properties

NameTypeDescription
availabilityZone?stringThe connection's Availability Zone.
securityGroupIdList?string[]The security group ID list used by the connection.
subnetId?stringThe subnet ID used by the connection.

availabilityZone?

Type: string (optional)

The connection's Availability Zone.

This field is redundant because the specified subnet implies the Availability Zone to be used. Currently the field must be populated, but it will be deprecated in the future.


securityGroupIdList?

Type: string[] (optional)

The security group ID list used by the connection.


subnetId?

Type: string (optional)

The subnet ID used by the connection.