Class: Aws::APIGateway::Types::GetDomainNameRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetDomainNameRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetDomainNameRequest data as a hash:
{
domain_name: "String", # required
}
Request to get the name of a DomainName resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
[Required] The name of the DomainName resource.
Instance Attribute Details
#domain_name ⇒ String
[Required] The name of the DomainName resource.
3475 3476 3477 3478 3479 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3475 class GetDomainNameRequest < Struct.new( :domain_name) SENSITIVE = [] include Aws::Structure end |