CfnIPAMScopeProps
- class aws_cdk.aws_ec2.CfnIPAMScopeProps(*, ipam_id, description=None, external_authority_configuration=None, tags=None)
Bases:
objectProperties for defining a
CfnIPAMScope.- Parameters:
ipam_id (
str) – The ID of the IPAM for which you’re creating this scope.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 .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 import aws_ec2 as ec2 cfn_iPAMScope_props = ec2.CfnIPAMScopeProps( ipam_id="ipamId", # the properties below are optional description="description", external_authority_configuration=ec2.CfnIPAMScope.IpamScopeExternalAuthorityConfigurationProperty( external_resource_identifier="externalResourceIdentifier", ipam_scope_external_authority_type="ipamScopeExternalAuthorityType" ), 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.