Class: Aws::CloudFormation::Types::ListResourceScanRelatedResourcesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ListResourceScanRelatedResourcesOutput
- 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,
NextToken
is set to a token. -
#related_resources ⇒ Array<Types::ScannedResource>
List of up to
MaxResults
resources in the specified resource scan related to the specified resources.
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 ListResourceScanRelatedResources
again and use that value for
the NextToken
parameter. If the request returns all results,
NextToken
is set to an empty string.
5019 5020 5021 5022 5023 5024 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5019 class ListResourceScanRelatedResourcesOutput < Struct.new( :related_resources, :next_token) SENSITIVE = [] include Aws::Structure end |
#related_resources ⇒ Array<Types::ScannedResource>
List of up to MaxResults
resources in the specified resource scan
related to the specified resources.
5019 5020 5021 5022 5023 5024 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5019 class ListResourceScanRelatedResourcesOutput < Struct.new( :related_resources, :next_token) SENSITIVE = [] include Aws::Structure end |