CfnSourceNetworkMixinProps
- class aws_cdk.cfn_property_mixins.aws_drs.CfnSourceNetworkMixinProps(*, origin_account_id=None, origin_region=None, tags=None, vpc_id=None)
Bases:
objectProperties for CfnSourceNetworkPropsMixin.
- Parameters:
origin_account_id (
Optional[str]) – The account ID containing the VPC to protect.origin_region (
Optional[str]) – The region containing the VPC to protect.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A set of tags associated with the Source Network.vpc_id (
Optional[str]) – The VPC ID to protect.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-drs-sourcenetwork.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_drs as drs cfn_source_network_mixin_props = drs.CfnSourceNetworkMixinProps( origin_account_id="originAccountId", origin_region="originRegion", tags=[CfnTag( key="key", value="value" )], vpc_id="vpcId" )
Attributes
- origin_account_id
The account ID containing the VPC to protect.
- origin_region
The region containing the VPC to protect.
- tags
A set of tags associated with the Source Network.
- vpc_id
The VPC ID to protect.