Class: Aws::AppRegistry::Types::ResourceGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRegistry::Types::ResourceGroup
- Defined in:
- gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb
Overview
The information about the resource group integration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon resource name (ARN) of the resource group.
-
#error_message ⇒ String
The error message that generates when the propagation process for the resource group fails.
-
#state ⇒ String
The state of the propagation process for the resource group.
Instance Attribute Details
#arn ⇒ String
The Amazon resource name (ARN) of the resource group.
1184 1185 1186 1187 1188 1189 1190 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 1184 class ResourceGroup < Struct.new( :state, :arn, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
The error message that generates when the propagation process for the resource group fails.
1184 1185 1186 1187 1188 1189 1190 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 1184 class ResourceGroup < Struct.new( :state, :arn, :error_message) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The state of the propagation process for the resource group. The states includes:
CREATING
if the resource group is in the process of being created.
CREATE_COMPLETE
if the resource group was created successfully.
CREATE_FAILED
if the resource group failed to be created.
UPDATING
if the resource group is in the process of being updated.
UPDATE_COMPLETE
if the resource group updated successfully.
UPDATE_FAILED
if the resource group could not update successfully.
1184 1185 1186 1187 1188 1189 1190 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 1184 class ResourceGroup < Struct.new( :state, :arn, :error_message) SENSITIVE = [] include Aws::Structure end |