Class: Aws::ResourceGroups::Types::UngroupResourcesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroups::Types::UngroupResourcesOutput
- 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 any resources that failed to be removed from the group by this operation.
-
#pending ⇒ Array<Types::PendingResource>
A list of any resources that are still in the process of being removed from the group by this operation.
-
#succeeded ⇒ Array<String>
A list of resources that were successfully removed from the group by this operation.
Instance Attribute Details
#failed ⇒ Array<Types::FailedResource>
A list of any resources that failed to be removed from the group by this operation.
1830 1831 1832 1833 1834 1835 1836 |
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 1830 class UngroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |
#pending ⇒ Array<Types::PendingResource>
A list of any resources that are still in the process of being
removed from the group by this operation. These pending removals
continue asynchronously. You can check the status of pending
removals by using the ListGroupResources
operation. After the
resource is successfully removed, it no longer appears in the
response.
1830 1831 1832 1833 1834 1835 1836 |
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 1830 class UngroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |
#succeeded ⇒ Array<String>
A list of resources that were successfully removed from the group by this operation.
1830 1831 1832 1833 1834 1835 1836 |
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 1830 class UngroupResourcesOutput < Struct.new( :succeeded, :failed, :pending) SENSITIVE = [] include Aws::Structure end |