Class: Aws::APIGateway::Types::UpdateDomainNameRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateDomainNameRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
A request to change information about the DomainName resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The name of the DomainName resource to be changed.
-
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see [Patch Operations].
Instance Attribute Details
#domain_name ⇒ String
The name of the DomainName resource to be changed.
5407 5408 5409 5410 5411 5412 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5407 class UpdateDomainNameRequest < Struct.new( :domain_name, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see [Patch Operations].
[1]: docs.aws.amazon.com/apigateway/latest/api/patch-operations.html
5407 5408 5409 5410 5411 5412 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5407 class UpdateDomainNameRequest < Struct.new( :domain_name, :patch_operations) SENSITIVE = [] include Aws::Structure end |