@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.192Z") @Stability(value=Stable) public interface CfnIPAMScopeProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIPAMScopeProps.Builder
A builder for
CfnIPAMScopeProps |
static class |
CfnIPAMScopeProps.Jsii$Proxy
An implementation for
CfnIPAMScopeProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnIPAMScopeProps.Builder |
builder() |
default String |
getDescription()
The description of the scope.
|
String |
getIpamId()
The ID of the IPAM for which you're creating this scope.
|
default List<CfnTag> |
getTags()
The key/value combination of a tag assigned to the resource.
|
@Stability(value=Stable) @NotNull String getIpamId()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
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 value TeamA , specify tag:Owner for the filter name and TeamA for the filter value.
@Stability(value=Stable) static CfnIPAMScopeProps.Builder builder()
CfnIPAMScopeProps.Builder of CfnIPAMScopePropsCopyright © 2022. All rights reserved.