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.
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The name of the DomainName resource.
Instance Attribute Details
#domain_name ⇒ String
The name of the DomainName resource.
2818 2819 2820 2821 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2818 class GetDomainNameRequest < Struct.new( :domain_name) include Aws::Structure end |