Class: Aws::ResourceGroups::Types::GroupResourcesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroups::Types::GroupResourcesOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resourcegroups/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed ⇒ Array<Types::FailedResource>
A list of Amazon resource names (ARNs) of any resources that this operation failed to add to the group.
-
#pending ⇒ Array<Types::PendingResource>
A list of Amazon resource names (ARNs) of any resources that this operation is still in the process adding to the group.
-
#succeeded ⇒ Array<String>
A list of Amazon resource names (ARNs) of the resources that this operation successfully added to the group.
Instance Attribute Details
#failed ⇒ Array<Types::FailedResource>
A list of Amazon resource names (ARNs) of any resources that this operation failed to add to the group.
785 786 787 788 789 790 791 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 785 class GroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |
#pending ⇒ Array<Types::PendingResource>
A list of Amazon resource names (ARNs) of any resources that this operation is still in the process adding to the group. These pending additions continue asynchronously. You can check the status of pending additions by using the ‘ ListGroupResources ` operation, and checking the `Resources` array in the response and the `Status` field of each object in that array.
785 786 787 788 789 790 791 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 785 class GroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |
#succeeded ⇒ Array<String>
A list of Amazon resource names (ARNs) of the resources that this operation successfully added to the group.
785 786 787 788 789 790 791 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 785 class GroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |