Class: Aws::CodeArtifact::Types::ListDomainsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::ListDomainsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeartifact/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domains ⇒ Array<Types::DomainSummary>
The returned list of [DomainSummary] objects.
-
#next_token ⇒ String
The token for the next set of results.
Instance Attribute Details
#domains ⇒ Array<Types::DomainSummary>
The returned list of [DomainSummary] objects.
[1]: docs.aws.amazon.com/codeartifact/latest/APIReference/API_DomainSummary.html
2083 2084 2085 2086 2087 2088 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 2083 class ListDomainsResult < Struct.new( :domains, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
2083 2084 2085 2086 2087 2088 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 2083 class ListDomainsResult < Struct.new( :domains, :next_token) SENSITIVE = [] include Aws::Structure end |