Class: Aws::ServiceDiscovery::Types::UpdateHttpNamespaceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceDiscovery::Types::UpdateHttpNamespaceRequest
- Defined in:
- gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb
Overview
When making an API call, you may pass UpdateHttpNamespaceRequest data as a hash:
{
id: "ResourceId", # required
updater_request_id: "ResourceId",
namespace: { # required
description: "ResourceDescription", # required
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the namespace that you want to update.
-
#namespace ⇒ Types::HttpNamespaceChange
Updated properties for the the HTTP namespace.
-
#updater_request_id ⇒ String
A unique string that identifies the request and that allows failed
UpdateHttpNamespace
requests to be retried without the risk of running the operation twice.
Instance Attribute Details
#id ⇒ String
The ID of the namespace that you want to update.
3581 3582 3583 3584 3585 3586 3587 |
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 3581 class UpdateHttpNamespaceRequest < Struct.new( :id, :updater_request_id, :namespace) SENSITIVE = [] include Aws::Structure end |
#namespace ⇒ Types::HttpNamespaceChange
Updated properties for the the HTTP namespace.
3581 3582 3583 3584 3585 3586 3587 |
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 3581 class UpdateHttpNamespaceRequest < Struct.new( :id, :updater_request_id, :namespace) SENSITIVE = [] include Aws::Structure end |
#updater_request_id ⇒ String
A unique string that identifies the request and that allows failed
UpdateHttpNamespace
requests to be retried without the risk of
running the operation twice. UpdaterRequestId
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.
3581 3582 3583 3584 3585 3586 3587 |
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 3581 class UpdateHttpNamespaceRequest < Struct.new( :id, :updater_request_id, :namespace) SENSITIVE = [] include Aws::Structure end |