Class: Aws::Amplify::Types::ListDomainAssociationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListDomainAssociationsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
The request structure for the list domain associations request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique ID for an Amplify app.
-
#max_results ⇒ Integer
The maximum number of records to list in a single response.
-
#next_token ⇒ String
A pagination token.
Instance Attribute Details
#app_id ⇒ String
The unique ID for an Amplify app.
2134 2135 2136 2137 2138 2139 2140 |
# File 'lib/aws-sdk-amplify/types.rb', line 2134 class ListDomainAssociationsRequest < Struct.new( :app_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of records to list in a single response.
2134 2135 2136 2137 2138 2139 2140 |
# File 'lib/aws-sdk-amplify/types.rb', line 2134 class ListDomainAssociationsRequest < Struct.new( :app_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token. Set to null to start listing apps from the start. If non-null, a pagination token is returned in a result. Pass its value in here to list more projects.
2134 2135 2136 2137 2138 2139 2140 |
# File 'lib/aws-sdk-amplify/types.rb', line 2134 class ListDomainAssociationsRequest < Struct.new( :app_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |