Interface CfnDedicatedIpPoolProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDedicatedIpPoolProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.910Z")
@Stability(Stable)
public interface CfnDedicatedIpPoolProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDedicatedIpPool
.
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.pinpointemail.*; CfnDedicatedIpPoolProps cfnDedicatedIpPoolProps = CfnDedicatedIpPoolProps.builder() .poolName("poolName") .tags(List.of(TagsProperty.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDedicatedIpPoolProps
static final class
An implementation forCfnDedicatedIpPoolProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the dedicated IP pool.default List<CfnDedicatedIpPool.TagsProperty>
getTags()
An object that defines the tags (keys and values) that you want to associate with the dedicated IP pool.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPoolName
The name of the dedicated IP pool. -
getTags
An object that defines the tags (keys and values) that you want to associate with the dedicated IP pool. -
builder
- Returns:
- a
CfnDedicatedIpPoolProps.Builder
ofCfnDedicatedIpPoolProps
-