Class: Aws::Drs::Types::StagingArea
- Inherits:
-
Struct
- Object
- Struct
- Aws::Drs::Types::StagingArea
- Defined in:
- gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb
Overview
Staging information related to source server.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_message ⇒ String
Shows an error message that occurred when DRS tried to access the staging source server.
-
#staging_account_id ⇒ String
Account ID of the account to which source server belongs.
-
#staging_source_server_arn ⇒ String
Arn of the staging source server if this source server is extended.
-
#status ⇒ String
Status of Source server extension.
Instance Attribute Details
#error_message ⇒ String
Shows an error message that occurred when DRS tried to access the staging source server. In this case StagingArea$status will have value EXTENSION_ERROR
3329 3330 3331 3332 3333 3334 3335 3336 |
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 3329 class StagingArea < Struct.new( :error_message, :staging_account_id, :staging_source_server_arn, :status) SENSITIVE = [] include Aws::Structure end |
#staging_account_id ⇒ String
Account ID of the account to which source server belongs. If this source server is extended - shows Account ID of staging source server.
3329 3330 3331 3332 3333 3334 3335 3336 |
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 3329 class StagingArea < Struct.new( :error_message, :staging_account_id, :staging_source_server_arn, :status) SENSITIVE = [] include Aws::Structure end |
#staging_source_server_arn ⇒ String
Arn of the staging source server if this source server is extended
3329 3330 3331 3332 3333 3334 3335 3336 |
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 3329 class StagingArea < Struct.new( :error_message, :staging_account_id, :staging_source_server_arn, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Status of Source server extension. Possible values: (a) NOT_EXTENDED - This is a source server that is replicating in the current account. (b) EXTENDED - Source server is extended from a staging source server. In this case, the value of stagingSourceServerArn is pointing to the Arn of the source server in the staging account. (c) EXTENSION_ERROR - Some issue occurred when accessing staging source server. In this case, errorMessage field will contain an error message that explains what happened.
3329 3330 3331 3332 3333 3334 3335 3336 |
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 3329 class StagingArea < Struct.new( :error_message, :staging_account_id, :staging_source_server_arn, :status) SENSITIVE = [] include Aws::Structure end |