interface PhysicalConnectionRequirementsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnConnectionPropsMixin_PhysicalConnectionRequirementsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » CfnConnectionPropsMixin » PhysicalConnectionRequirementsProperty |
Physical connection requirements of a connection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from '@aws-cdk/cfn-property-mixins';
const physicalConnectionRequirementsProperty: datazone.CfnConnectionPropsMixin.PhysicalConnectionRequirementsProperty = {
availabilityZone: 'availabilityZone',
securityGroupIdList: ['securityGroupIdList'],
subnetId: 'subnetId',
subnetIdList: ['subnetIdList'],
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string | The availability zone of the physical connection requirements of a connection. |
| security | string[] | The group ID list of the physical connection requirements of a connection. |
| subnet | string | The subnet ID of the physical connection requirements of a connection. |
| subnet | string[] | The subnet ID list of the physical connection requirements of a connection. |
availabilityZone?
Type:
string
(optional)
The availability zone of the physical connection requirements of a connection.
securityGroupIdList?
Type:
string[]
(optional)
The group ID list of the physical connection requirements of a connection.
subnetId?
Type:
string
(optional)
The subnet ID of the physical connection requirements of a connection.
subnetIdList?
Type:
string[]
(optional)
The subnet ID list of the physical connection requirements of a connection.

.NET
Go
Java
Python
TypeScript