@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-22T19:35:48.179Z") public class CfnPrivateDnsNamespace extends CfnResource implements IInspectable
Creates a private namespace based on DNS, which is visible only inside a specified Amazon VPC. The namespace defines your service naming scheme. For example, if you name your namespace example.com
and name your service backend
, the resulting DNS name for the service is backend.example.com
. Service instances that are registered using a private DNS namespace can be discovered using either a DiscoverInstances
request or using DNS. For the current quota on the number of namespaces that you can create using the same AWS account , see AWS Cloud Map quotas in the AWS Cloud Map Developer Guide .
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.*; CfnPrivateDnsNamespace cfnPrivateDnsNamespace = CfnPrivateDnsNamespace.Builder.create(this, "MyCfnPrivateDnsNamespace") .name("name") .vpc("vpc") // the properties below are optional .description("description") .properties(PropertiesProperty.builder() .dnsProperties(PrivateDnsPropertiesMutableProperty.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 |
CfnPrivateDnsNamespace.Builder
A fluent builder for
CfnPrivateDnsNamespace . |
static interface |
CfnPrivateDnsNamespace.PrivateDnsPropertiesMutableProperty
DNS properties for the private DNS namespace.
|
static interface |
CfnPrivateDnsNamespace.PropertiesProperty
Properties for the private DNS namespace.
|
static interface |
CfnPrivateDnsNamespace.SOAProperty
Start of Authority (SOA) properties for a public or private DNS namespace.
|
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
IConstruct.Jsii$Default
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
Modifier | Constructor and Description |
---|---|
|
CfnPrivateDnsNamespace(Construct scope,
java.lang.String id,
CfnPrivateDnsNamespaceProps props)
Create a new `AWS::ServiceDiscovery::PrivateDnsNamespace`.
|
protected |
CfnPrivateDnsNamespace(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnPrivateDnsNamespace(software.amazon.jsii.JsiiObjectRef objRef) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAttrArn()
The Amazon Resource Name (ARN) of the private namespace.
|
java.lang.String |
getAttrHostedZoneId()
The ID for the Route 53 hosted zone that AWS Cloud Map creates when you create a namespace.
|
java.lang.String |
getAttrId()
The ID of the private namespace.
|
protected java.util.Map<java.lang.String,java.lang.Object> |
getCfnProperties() |
java.lang.String |
getDescription()
A description for the namespace.
|
java.lang.String |
getName()
The name that you want to assign to this namespace.
|
java.lang.Object |
getProperties()
Properties for the private DNS namespace.
|
TagManager |
getTags()
The tags for the namespace.
|
java.lang.String |
getVpc()
The ID of the Amazon VPC that you want to associate the namespace with.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected java.util.Map<java.lang.String,java.lang.Object> |
renderProperties(java.util.Map<java.lang.String,java.lang.Object> props) |
void |
setDescription(java.lang.String value)
A description for the namespace.
|
void |
setName(java.lang.String value)
The name that you want to assign to this namespace.
|
void |
setProperties(CfnPrivateDnsNamespace.PropertiesProperty value)
Properties for the private DNS namespace.
|
void |
setProperties(IResolvable value)
Properties for the private DNS namespace.
|
void |
setVpc(java.lang.String value)
The ID of the Amazon VPC that you want to associate the namespace with.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validateProperties
getRef
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
public static final java.lang.String CFN_RESOURCE_TYPE_NAME
protected CfnPrivateDnsNamespace(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnPrivateDnsNamespace(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
public CfnPrivateDnsNamespace(Construct scope, java.lang.String id, CfnPrivateDnsNamespaceProps 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.public void inspect(TreeInspector inspector)
inspect
in interface IInspectable
inspector
- - tree inspector to collect and process attributes. This parameter is required.protected java.util.Map<java.lang.String,java.lang.Object> renderProperties(java.util.Map<java.lang.String,java.lang.Object> props)
renderProperties
in class CfnResource
props
- This parameter is required.public java.lang.String getAttrArn()
public java.lang.String getAttrHostedZoneId()
public java.lang.String getAttrId()
protected java.util.Map<java.lang.String,java.lang.Object> getCfnProperties()
getCfnProperties
in class CfnResource
public TagManager getTags()
Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
public java.lang.String getName()
When you create a private DNS namespace, AWS Cloud Map automatically creates an Amazon RouteĀ 53 private hosted zone that has the same name as the namespace.
public void setName(java.lang.String value)
When you create a private DNS namespace, AWS Cloud Map automatically creates an Amazon RouteĀ 53 private hosted zone that has the same name as the namespace.
public java.lang.String getVpc()
public void setVpc(java.lang.String value)
public java.lang.String getDescription()
public void setDescription(java.lang.String value)
public java.lang.Object getProperties()
public void setProperties(IResolvable value)
public void setProperties(CfnPrivateDnsNamespace.PropertiesProperty value)