Class: Aws::ResourceGroups::Types::GroupResourcesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroups::Types::GroupResourcesOutput
- Defined in:
- gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed ⇒ Array<Types::FailedResource>
A list of ARNs of any resources that failed to be added to the group by this operation.
-
#pending ⇒ Array<Types::PendingResource>
A list of ARNs of any resources that are still in the process of being added to the group by this operation.
-
#succeeded ⇒ Array<String>
A list of ARNs of resources that were successfully added to the group by this operation.
Instance Attribute Details
#failed ⇒ Array<Types::FailedResource>
A list of ARNs of any resources that failed to be added to the group by this operation.
670 671 672 673 674 675 676 |
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 670 class GroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |
#pending ⇒ Array<Types::PendingResource>
A list of ARNs of any resources that are still in the process of
being added to the group by this operation. 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.
670 671 672 673 674 675 676 |
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 670 class GroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |
#succeeded ⇒ Array<String>
A list of ARNs of resources that were successfully added to the group by this operation.
670 671 672 673 674 675 676 |
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 670 class GroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |