Class: Aws::ServiceDiscovery::Types::CreatePublicDnsNamespaceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceDiscovery::Types::CreatePublicDnsNamespaceRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-servicediscovery/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creator_request_id ⇒ String
A unique string that identifies the request and that allows failed ‘CreatePublicDnsNamespace` requests to be retried without the risk of running the operation twice.
-
#description ⇒ String
A description for the namespace.
-
#name ⇒ String
The name that you want to assign to this namespace.
-
#properties ⇒ Types::PublicDnsNamespaceProperties
Properties for the public DNS namespace.
-
#tags ⇒ Array<Types::Tag>
The tags to add to the namespace.
Instance Attribute Details
#creator_request_id ⇒ String
A unique string that identifies the request and that allows failed ‘CreatePublicDnsNamespace` requests to be retried without the risk of running the operation twice. `CreatorRequestId` can be any unique string (for example, a date/timestamp).
**A suitable default value is auto-generated.** You should normally not need to pass this option.
171 172 173 174 175 176 177 178 179 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 171 class CreatePublicDnsNamespaceRequest < Struct.new( :name, :creator_request_id, :description, :tags, :properties) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description for the namespace.
171 172 173 174 175 176 177 178 179 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 171 class CreatePublicDnsNamespaceRequest < Struct.new( :name, :creator_request_id, :description, :tags, :properties) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name that you want to assign to this namespace.
<note markdown=“1”> Do not include sensitive information in the name. The name is publicly available using DNS queries.
</note>
171 172 173 174 175 176 177 178 179 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 171 class CreatePublicDnsNamespaceRequest < Struct.new( :name, :creator_request_id, :description, :tags, :properties) SENSITIVE = [] include Aws::Structure end |
#properties ⇒ Types::PublicDnsNamespaceProperties
Properties for the public DNS namespace.
171 172 173 174 175 176 177 178 179 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 171 class CreatePublicDnsNamespaceRequest < Struct.new( :name, :creator_request_id, :description, :tags, :properties) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags to add to the namespace. Each tag consists of a key and an optional value that you define. Tags keys can be up to 128 characters in length, and tag values can be up to 256 characters in length.
171 172 173 174 175 176 177 178 179 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 171 class CreatePublicDnsNamespaceRequest < Struct.new( :name, :creator_request_id, :description, :tags, :properties) SENSITIVE = [] include Aws::Structure end |