interface CfnSourceNetworkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DRS.CfnSourceNetworkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdrs#CfnSourceNetworkMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.drs.CfnSourceNetworkMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_drs.CfnSourceNetworkMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_drs » CfnSourceNetworkMixinProps |
Properties for CfnSourceNetworkPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-drs-sourcenetwork.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_drs as drs } from '@aws-cdk/cfn-property-mixins';
const cfnSourceNetworkMixinProps: drs.CfnSourceNetworkMixinProps = {
originAccountId: 'originAccountId',
originRegion: 'originRegion',
tags: [{
key: 'key',
value: 'value',
}],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| origin | string | The account ID containing the VPC to protect. |
| origin | string | The region containing the VPC to protect. |
| tags? | Cfn[] | A set of tags associated with the Source Network. |
| vpc | string | The VPC ID to protect. |
originAccountId?
Type:
string
(optional)
The account ID containing the VPC to protect.
originRegion?
Type:
string
(optional)
The region containing the VPC to protect.
tags?
Type:
Cfn[]
(optional)
A set of tags associated with the Source Network.
vpcId?
Type:
string
(optional)
The VPC ID to protect.

.NET
Go
Java
Python
TypeScript