CfnIPAMScopeMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnIPAMScopeMixinProps(*, description=None, external_authority_configuration=None, ipam_id=None, tags=None)
Bases:
objectProperties for CfnIPAMScopePropsMixin.
- Parameters:
description (
Optional[str]) – The description of the scope.external_authority_configuration (
Union[IResolvable,IpamScopeExternalAuthorityConfigurationProperty,Dict[str,Any],None]) – The configuration that links an Amazon VPC IPAM scope to an external authority system. It specifies the type of external system and the external resource identifier that identifies your account or instance in that system. For more information, see Integrate VPC IPAM with Infoblox infrastructure in the Amazon VPC IPAM User Guide .ipam_id (
Optional[str]) – The ID of the IPAM for which you’re creating this scope.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the keyOwnerand the valueTeamA, specifytag:Ownerfor the filter name andTeamAfor the filter value.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamscope.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_iPAMScope_mixin_props = ec2_mixins.CfnIPAMScopeMixinProps( description="description", external_authority_configuration=ec2_mixins.CfnIPAMScopePropsMixin.IpamScopeExternalAuthorityConfigurationProperty( external_resource_identifier="externalResourceIdentifier", ipam_scope_external_authority_type="ipamScopeExternalAuthorityType" ), ipam_id="ipamId", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the scope.
- external_authority_configuration
The configuration that links an Amazon VPC IPAM scope to an external authority system.
It specifies the type of external system and the external resource identifier that identifies your account or instance in that system.
For more information, see Integrate VPC IPAM with Infoblox infrastructure in the Amazon VPC IPAM User Guide .
- ipam_id
The ID of the IPAM for which you’re creating this scope.
- tags
The key/value combination of a tag assigned to the resource.
Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key
Ownerand the valueTeamA, specifytag:Ownerfor the filter name andTeamAfor the filter value.