interface VpcConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SAM.CfnFunction.VpcConfigProperty |
Java | software.amazon.awscdk.services.sam.CfnFunction.VpcConfigProperty |
Python | aws_cdk.aws_sam.CfnFunction.VpcConfigProperty |
TypeScript | @aws-cdk/aws-sam » CfnFunction » VpcConfigProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sam from '@aws-cdk/aws-sam';
const vpcConfigProperty: sam.CfnFunction.VpcConfigProperty = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | CfnFunction.VpcConfigProperty.SecurityGroupIds. |
| subnet | string[] | CfnFunction.VpcConfigProperty.SubnetIds. |
securityGroupIds
Type:
string[]
CfnFunction.VpcConfigProperty.SecurityGroupIds.
subnetIds
Type:
string[]
CfnFunction.VpcConfigProperty.SubnetIds.

.NET
Java
Python
TypeScript