Values.CreatePrivateDnsNamespaceRequestSourceCreates 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 Amazon Web Services account, see Cloud Map quotas in the Cloud Map Developer Guide.
type nonrec t = {name : NamespaceNamePrivate.t;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.
*)creatorRequestId : ResourceId.t option;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).
*)description : ResourceDescription.t option;A description for the namespace.
*)vpc : ResourceId.t;The ID of the Amazon VPC that you want to associate the namespace with.
*)properties : PrivateDnsNamespaceProperties.t option;Properties for the private DNS namespace.
*)}val make :
?creatorRequestId:??? ->
?description:??? ->
?tags:??? ->
?properties:??? ->
name:NamespaceNamePrivate.t ->
vpc:ResourceId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * [> `String of TagKey.t ]) list ] list
| `String of NamespaceNamePrivate.t
| `Structure of
(string
* [> `Structure of
(string
* [> `Structure of
(string * [> `Long of RecordTTL.t ]) list ])
list ])
list ])
list ]