Class: Aws::APIGateway::Types::UpdateDomainNameRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateDomainNameRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass UpdateDomainNameRequest data as a hash:
{
domain_name: "String", # required
patch_operations: [
{
op: "add", # accepts add, remove, replace, move, copy, test
path: "String",
value: "String",
from: "String",
},
],
}
A request to change information about the DomainName resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
[Required] The name of the DomainName resource to be changed.
-
#patch_operations ⇒ Array<Types::PatchOperation>
A list of update operations to be applied to the specified resource and in the order specified in this list.
Instance Attribute Details
#domain_name ⇒ String
[Required] The name of the DomainName resource to be changed.
7498 7499 7500 7501 7502 7503 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7498 class UpdateDomainNameRequest < Struct.new( :domain_name, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#patch_operations ⇒ Array<Types::PatchOperation>
A list of update operations to be applied to the specified resource and in the order specified in this list.
7498 7499 7500 7501 7502 7503 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7498 class UpdateDomainNameRequest < Struct.new( :domain_name, :patch_operations) SENSITIVE = [] include Aws::Structure end |