interface PublicDnsPropertiesMutableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ServiceDiscovery.CfnPublicDnsNamespace.PublicDnsPropertiesMutableProperty |
Java | software.amazon.awscdk.services.servicediscovery.CfnPublicDnsNamespace.PublicDnsPropertiesMutableProperty |
Python | aws_cdk.aws_servicediscovery.CfnPublicDnsNamespace.PublicDnsPropertiesMutableProperty |
TypeScript | @aws-cdk/aws-servicediscovery » CfnPublicDnsNamespace » PublicDnsPropertiesMutableProperty |
DNS properties for the public DNS namespace.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as servicediscovery from '@aws-cdk/aws-servicediscovery';
const publicDnsPropertiesMutableProperty: servicediscovery.CfnPublicDnsNamespace.PublicDnsPropertiesMutableProperty = {
soa: {
ttl: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| soa? | IResolvable | SOAProperty | Start of Authority (SOA) record for the hosted zone for the public DNS namespace. |
soa?
Type:
IResolvable | SOAProperty
(optional)
Start of Authority (SOA) record for the hosted zone for the public DNS namespace.

.NET
Java
Python
TypeScript