Class: Aws::DatabaseMigrationService::Types::Connection
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::DatabaseMigrationService::Types::Connection
 
- Defined in:
- gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb
Overview
Status of the connection between an endpoint and a replication instance, including Amazon Resource Names (ARNs) and the last error message issued.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #endpoint_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ARN string that uniquely identifies the endpoint. 
- 
  
    
      #endpoint_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The identifier of the endpoint. 
- 
  
    
      #last_failure_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The error message when the connection last failed. 
- 
  
    
      #replication_instance_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ARN of the replication instance. 
- 
  
    
      #replication_instance_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The replication instance identifier. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The connection status. 
Instance Attribute Details
#endpoint_arn ⇒ String
The ARN string that uniquely identifies the endpoint.
| 582 583 584 585 586 587 588 589 590 591 | # File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 582 class Connection < Struct.new( :replication_instance_arn, :endpoint_arn, :status, :last_failure_message, :endpoint_identifier, :replication_instance_identifier) SENSITIVE = [] include Aws::Structure end | 
#endpoint_identifier ⇒ String
The identifier of the endpoint. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
| 582 583 584 585 586 587 588 589 590 591 | # File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 582 class Connection < Struct.new( :replication_instance_arn, :endpoint_arn, :status, :last_failure_message, :endpoint_identifier, :replication_instance_identifier) SENSITIVE = [] include Aws::Structure end | 
#last_failure_message ⇒ String
The error message when the connection last failed.
| 582 583 584 585 586 587 588 589 590 591 | # File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 582 class Connection < Struct.new( :replication_instance_arn, :endpoint_arn, :status, :last_failure_message, :endpoint_identifier, :replication_instance_identifier) SENSITIVE = [] include Aws::Structure end | 
#replication_instance_arn ⇒ String
The ARN of the replication instance.
| 582 583 584 585 586 587 588 589 590 591 | # File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 582 class Connection < Struct.new( :replication_instance_arn, :endpoint_arn, :status, :last_failure_message, :endpoint_identifier, :replication_instance_identifier) SENSITIVE = [] include Aws::Structure end | 
#replication_instance_identifier ⇒ String
The replication instance identifier. This parameter is stored as a lowercase string.
| 582 583 584 585 586 587 588 589 590 591 | # File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 582 class Connection < Struct.new( :replication_instance_arn, :endpoint_arn, :status, :last_failure_message, :endpoint_identifier, :replication_instance_identifier) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
The connection status. This parameter can return one of the following values:
- "successful"
- "testing"
- "failed"
- "deleting"
| 582 583 584 585 586 587 588 589 590 591 | # File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 582 class Connection < Struct.new( :replication_instance_arn, :endpoint_arn, :status, :last_failure_message, :endpoint_identifier, :replication_instance_identifier) SENSITIVE = [] include Aws::Structure end |