createPrivateDnsNamespace method

Future<CreatePrivateDnsNamespaceResponse> createPrivateDnsNamespace({
  1. required String name,
  2. required String vpc,
  3. String? creatorRequestId,
  4. String? description,
  5. List<Tag>? tags,
})

Creates a private namespace based on DNS, which will be 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 will be backend.example.com. For the current quota on the number of namespaces that you can create using the same AWS account, see AWS Cloud Map Limits in the AWS Cloud Map Developer Guide.

May throw InvalidInput. May throw NamespaceAlreadyExists. May throw ResourceLimitExceeded. May throw DuplicateRequest. May throw TooManyTagsException.

Parameter name : The name that you want to assign to this namespace. 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.

Parameter vpc : The ID of the Amazon VPC that you want to associate the namespace with.

Parameter creatorRequestId : A unique string that identifies the request and that allows failed CreatePrivateDnsNamespace requests to be retried without the risk of executing the operation twice. CreatorRequestId can be any unique string, for example, a date/time stamp.

Parameter description : A description for the namespace.

Parameter tags : The tags to add to the namespace. 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.

Implementation

Future<CreatePrivateDnsNamespaceResponse> createPrivateDnsNamespace({
  required String name,
  required String vpc,
  String? creatorRequestId,
  String? description,
  List<Tag>? tags,
}) async {
  ArgumentError.checkNotNull(name, 'name');
  _s.validateStringLength(
    'name',
    name,
    0,
    1024,
    isRequired: true,
  );
  ArgumentError.checkNotNull(vpc, 'vpc');
  _s.validateStringLength(
    'vpc',
    vpc,
    0,
    64,
    isRequired: true,
  );
  _s.validateStringLength(
    'creatorRequestId',
    creatorRequestId,
    0,
    64,
  );
  _s.validateStringLength(
    'description',
    description,
    0,
    1024,
  );
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'Route53AutoNaming_v20170314.CreatePrivateDnsNamespace'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'Name': name,
      'Vpc': vpc,
      'CreatorRequestId': creatorRequestId ?? _s.generateIdempotencyToken(),
      if (description != null) 'Description': description,
      if (tags != null) 'Tags': tags,
    },
  );

  return CreatePrivateDnsNamespaceResponse.fromJson(jsonResponse.body);
}