Class: Aws::ServiceDiscovery::Types::CreatePrivateDnsNamespaceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceDiscovery::Types::CreatePrivateDnsNamespaceRequest
- 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 ‘CreatePrivateDnsNamespace` 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::PrivateDnsNamespaceProperties
Properties for the private DNS namespace.
-
#tags ⇒ Array<Types::Tag>
The tags to add to the namespace.
-
#vpc ⇒ String
The ID of the Amazon VPC that you want to associate the namespace with.
Instance Attribute Details
#creator_request_id ⇒ String
A unique string that identifies the request and that allows failed ‘CreatePrivateDnsNamespace` 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.
106 107 108 109 110 111 112 113 114 115 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 106 class CreatePrivateDnsNamespaceRequest < Struct.new( :name, :creator_request_id, :description, :vpc, :tags, :properties) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description for the namespace.
106 107 108 109 110 111 112 113 114 115 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 106 class CreatePrivateDnsNamespaceRequest < Struct.new( :name, :creator_request_id, :description, :vpc, :tags, :properties) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name that you want to assign to this namespace. When you create a private DNS namespace, Cloud Map automatically creates an Amazon Route 53 private hosted zone that has the same name as the namespace.
106 107 108 109 110 111 112 113 114 115 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 106 class CreatePrivateDnsNamespaceRequest < Struct.new( :name, :creator_request_id, :description, :vpc, :tags, :properties) SENSITIVE = [] include Aws::Structure end |
#properties ⇒ Types::PrivateDnsNamespaceProperties
Properties for the private DNS namespace.
106 107 108 109 110 111 112 113 114 115 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 106 class CreatePrivateDnsNamespaceRequest < Struct.new( :name, :creator_request_id, :description, :vpc, :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.
106 107 108 109 110 111 112 113 114 115 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 106 class CreatePrivateDnsNamespaceRequest < Struct.new( :name, :creator_request_id, :description, :vpc, :tags, :properties) SENSITIVE = [] include Aws::Structure end |
#vpc ⇒ String
The ID of the Amazon VPC that you want to associate the namespace with.
106 107 108 109 110 111 112 113 114 115 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 106 class CreatePrivateDnsNamespaceRequest < Struct.new( :name, :creator_request_id, :description, :vpc, :tags, :properties) SENSITIVE = [] include Aws::Structure end |