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 ARNs of any resources that this operation failed to add to the group.
-
#pending ⇒ Array<Types::PendingResource>
A list of ARNs of any resources that this operation is still in the process adding to the group.
-
#succeeded ⇒ Array<String>
A list of ARNs of the resources that this operation successfully added to the group.
Instance Attribute Details
#failed ⇒ Array<Types::FailedResource>
A list of ARNs of any resources that this operation failed to add to the group.
614 615 616 617 618 619 620 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 614 class GroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |
#pending ⇒ Array<Types::PendingResource>
A list of 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.
614 615 616 617 618 619 620 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 614 class GroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |
#succeeded ⇒ Array<String>
A list of ARNs of the resources that this operation successfully added to the group.
614 615 616 617 618 619 620 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 614 class GroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |