Class: Aws::CloudFormation::Types::ListResourceScanResourcesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ListResourceScanResourcesOutput
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the request doesn't return all the remaining results,
NextTokenis set to a token. -
#resources ⇒ Array<Types::ScannedResource>
List of up to
MaxResultsresources in the specified resource scan that match all of the specified filters.
Instance Attribute Details
#next_token ⇒ String
If the request doesn't return all the remaining results,
NextToken is set to a token. To retrieve the next set of results,
call ListResourceScanResources again and use that value for the
NextToken parameter. If the request returns all results,
NextToken is set to an empty string.
5592 5593 5594 5595 5596 5597 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5592 class ListResourceScanResourcesOutput < Struct.new( :resources, :next_token) SENSITIVE = [] include Aws::Structure end |
#resources ⇒ Array<Types::ScannedResource>
List of up to MaxResults resources in the specified resource scan
that match all of the specified filters.
5592 5593 5594 5595 5596 5597 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5592 class ListResourceScanResourcesOutput < Struct.new( :resources, :next_token) SENSITIVE = [] include Aws::Structure end |