Interface CfnIPAMScopeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIPAMScopeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:38.614Z")
@Stability(Stable)
public interface CfnIPAMScopeProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnIPAMScope
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; CfnIPAMScopeProps cfnIPAMScopeProps = CfnIPAMScopeProps.builder() .ipamId("ipamId") // the properties below are optional .description("description") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIPAMScopeProps
static final class
An implementation forCfnIPAMScopeProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnIPAMScopeProps.Builder
builder()
default String
The description of the scope.The ID of the IPAM for which you're creating this scope.getTags()
The key/value combination of a tag assigned to the resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIpamId
The ID of the IPAM for which you're creating this scope. -
getDescription
The description of the scope. -
getTags
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
Owner
and the valueTeamA
, specifytag:Owner
for the filter name andTeamA
for the filter value. -
builder
- Returns:
- a
CfnIPAMScopeProps.Builder
ofCfnIPAMScopeProps
-