interface CapacityProviderVpcConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnCapacityProviderPropsMixin.CapacityProviderVpcConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnCapacityProviderPropsMixin_CapacityProviderVpcConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnCapacityProviderPropsMixin.CapacityProviderVpcConfigProperty |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnCapacityProviderPropsMixin.CapacityProviderVpcConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » CfnCapacityProviderPropsMixin » CapacityProviderVpcConfigProperty |
VPC configuration that specifies the network settings for compute instances managed by the capacity provider.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const capacityProviderVpcConfigProperty: lambda_mixins.CfnCapacityProviderPropsMixin.CapacityProviderVpcConfigProperty = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | A list of security group IDs that control network access for compute instances managed by the capacity provider. |
| subnet | string[] | A list of subnet IDs where the capacity provider launches compute instances. |
securityGroupIds?
Type:
string[]
(optional)
A list of security group IDs that control network access for compute instances managed by the capacity provider.
subnetIds?
Type:
string[]
(optional)
A list of subnet IDs where the capacity provider launches compute instances.

.NET
Go
Java
Python
TypeScript