@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:19.236Z") @Stability(value=Stable) public class CfnPublicDnsNamespace extends CfnResource implements IInspectable
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.servicediscovery.*;
CfnPublicDnsNamespace cfnPublicDnsNamespace = CfnPublicDnsNamespace.Builder.create(this, "MyCfnPublicDnsNamespace")
.name("name")
// the properties below are optional
.description("description")
.properties(PropertiesProperty.builder()
.dnsProperties(PublicDnsPropertiesMutableProperty.builder()
.soa(SOAProperty.builder()
.ttl(123)
.build())
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnPublicDnsNamespace.Builder
A fluent builder for
CfnPublicDnsNamespace. |
static interface |
CfnPublicDnsNamespace.PropertiesProperty
Example:
|
static interface |
CfnPublicDnsNamespace.PublicDnsPropertiesMutableProperty
Example:
|
static interface |
CfnPublicDnsNamespace.SOAProperty
Example:
|
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnPublicDnsNamespace(software.constructs.Construct scope,
String id,
CfnPublicDnsNamespaceProps props)
Create a new `AWS::ServiceDiscovery::PublicDnsNamespace`.
|
protected |
CfnPublicDnsNamespace(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnPublicDnsNamespace(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrArn() |
String |
getAttrId() |
protected Map<String,Object> |
getCfnProperties() |
String |
getDescription()
`AWS::ServiceDiscovery::PublicDnsNamespace.Description`.
|
String |
getName()
`AWS::ServiceDiscovery::PublicDnsNamespace.Name`.
|
Object |
getProperties()
`AWS::ServiceDiscovery::PublicDnsNamespace.Properties`.
|
TagManager |
getTags()
`AWS::ServiceDiscovery::PublicDnsNamespace.Tags`.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setDescription(String value)
`AWS::ServiceDiscovery::PublicDnsNamespace.Description`.
|
void |
setName(String value)
`AWS::ServiceDiscovery::PublicDnsNamespace.Name`.
|
void |
setProperties(CfnPublicDnsNamespace.PropertiesProperty value)
`AWS::ServiceDiscovery::PublicDnsNamespace.Properties`.
|
void |
setProperties(IResolvable value)
`AWS::ServiceDiscovery::PublicDnsNamespace.Properties`.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnPublicDnsNamespace(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnPublicDnsNamespace(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnPublicDnsNamespace(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnPublicDnsNamespaceProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrArn()
@Stability(value=Stable) @NotNull public String getAttrId()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @Nullable public String getDescription()
@Stability(value=Stable)
public void setDescription(@Nullable
String value)
@Stability(value=Stable) @NotNull public String getName()
@Stability(value=Stable)
public void setName(@NotNull
String value)
@Stability(value=Stable) @Nullable public Object getProperties()
@Stability(value=Stable)
public void setProperties(@Nullable
CfnPublicDnsNamespace.PropertiesProperty value)
@Stability(value=Stable)
public void setProperties(@Nullable
IResolvable value)
@Stability(value=Stable) @NotNull public TagManager getTags()
Copyright © 2021. All rights reserved.