interface VpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.APS.CfnScraperPropsMixin.VpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsaps#CfnScraperPropsMixin_VpcConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.aps.CfnScraperPropsMixin.VpcConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_aps.CfnScraperPropsMixin.VpcConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_aps » CfnScraperPropsMixin » VpcConfigurationProperty |
Configuration for VPC metrics source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_aps as aps } from '@aws-cdk/cfn-property-mixins';
const vpcConfigurationProperty: aps.CfnScraperPropsMixin.VpcConfigurationProperty = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | List of security group IDs. |
| subnet | string[] | List of subnet IDs. |
securityGroupIds?
Type:
string[]
(optional)
List of security group IDs.
subnetIds?
Type:
string[]
(optional)
List of subnet IDs.

.NET
Go
Java
Python
TypeScript