CreateHttpNamespace
Creates an HTTP namespace. Service instances registered using an HTTP namespace can be discovered using a
DiscoverInstances
request but can't be discovered using DNS.
For the current quota on the number of namespaces that you can create using the same AWS account, see AWS Cloud Map quotas in the AWS Cloud Map Developer Guide.
Request Syntax
{
"CreatorRequestId": "string
",
"Description": "string
",
"Name": "string
",
"Tags": [
{
"Key": "string
",
"Value": "string
"
}
]
}
Request Parameters
For information about the parameters that are common to all actions, see Common Parameters.
The request accepts the following data in JSON format.
- CreatorRequestId
-
A unique string that identifies the request and that allows failed
CreateHttpNamespace
requests to be retried without the risk of running the operation twice.CreatorRequestId
can be any unique string (for example, a date/time stamp).Type: String
Length Constraints: Maximum length of 64.
Required: No
- Description
-
A description for the namespace.
Type: String
Length Constraints: Maximum length of 1024.
Required: No
- Name
-
The name that you want to assign to this namespace.
Type: String
Length Constraints: Maximum length of 1024.
Pattern:
^[!-~]{1,1024}$
Required: Yes
- Tags
-
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.
Type: Array of Tag objects
Array Members: Minimum number of 0 items. Maximum number of 200 items.
Required: No
Response Syntax
{
"OperationId": "string"
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- OperationId
-
A value that you can use to determine whether the request completed successfully. To get the status of the operation, see GetOperation.
Type: String
Length Constraints: Maximum length of 255.
Errors
For information about the errors that are common to all actions, see Common Errors.
- DuplicateRequest
-
The operation is already in progress.
HTTP Status Code: 400
- InvalidInput
-
One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.
HTTP Status Code: 400
- NamespaceAlreadyExists
-
The namespace that you're trying to create already exists.
HTTP Status Code: 400
- ResourceLimitExceeded
-
The resource can't be created because you've reached the quota on the number of resources.
HTTP Status Code: 400
- TooManyTagsException
-
The list of tags on the resource is over the quota. The maximum number of tags that can be applied to a resource is 50.
HTTP Status Code: 400
Examples
CreateHttpNamespace Example
This example illustrates one usage of CreateHttpNamespace.
Sample Request
POST / HTTP/1.1
host:servicediscovery.us-west-2.amazonaws.com
x-amz-date:20181118T211703Z
authorization: AWS4-HMAC-SHA256 Credential=AKIAIOSFODNN7EXAMPLE/20181118/us-west-2/servicediscovery/aws4_request,
SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,
Signature=[calculated-signature]
x-amz-target:Route53AutoNaming_v20170314.CreateHttpNamespace
content-type:application/x-amz-json-1.1
content-length:[number of characters in the JSON string]
{
"CreatorRequestId": "example-creator-request-id-0001",
"Name": "example-http.com",
"Description": "Example.com AWS Cloud Map HTTP Namespace"
}
Sample Response
HTTP/1.1 200
Content-Length: [number of characters in the JSON string]
Content-Type: application/x-amz-json-1.1
{
"OperationId":"httpvoqozuhfet5kzxoxg-a-response-example"
}
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: