Class: Aws::Amplify::Types::ListDomainAssociationsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListDomainAssociationsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
The result structure for the list domain association request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_associations ⇒ Array<Types::DomainAssociation>
A list of domain associations.
-
#next_token ⇒ String
A pagination token.
Instance Attribute Details
#domain_associations ⇒ Array<Types::DomainAssociation>
A list of domain associations.
2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-amplify/types.rb', line 2155 class ListDomainAssociationsResult < Struct.new( :domain_associations, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token. If non-null, a pagination token is returned in a result. Pass its value in another request to retrieve more entries.
2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-amplify/types.rb', line 2155 class ListDomainAssociationsResult < Struct.new( :domain_associations, :next_token) SENSITIVE = [] include Aws::Structure end |