interface PhysicalConnectionRequirementsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnConnectionPropsMixin_PhysicalConnectionRequirementsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnConnectionPropsMixin » PhysicalConnectionRequirementsProperty |
The OAuth client app in GetConnection response.
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/cfn-property-mixins';
const physicalConnectionRequirementsProperty: glue.CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty = {
availabilityZone: 'availabilityZone',
securityGroupIdList: ['securityGroupIdList'],
subnetId: 'subnetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string | The connection's Availability Zone. |
| security | string[] | The security group ID list used by the connection. |
| subnet | string | The subnet ID used by the connection. |
availabilityZone?
Type:
string
(optional)
The connection's Availability Zone.
securityGroupIdList?
Type:
string[]
(optional)
The security group ID list used by the connection.
subnetId?
Type:
string
(optional)
The subnet ID used by the connection.

.NET
Go
Java
Python
TypeScript