Class: Aws::CodeStarconnections::Types::ResourceSyncAttempt
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeStarconnections::Types::ResourceSyncAttempt
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codestarconnections/types.rb
Overview
Information about a resource sync attempt.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #events  ⇒ Array<Types::ResourceSyncEvent> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The events related to a resource sync attempt. 
- 
  
    
      #initial_revision  ⇒ Types::Revision 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The current state of the resource as defined in the resource’s ‘config-file` in the linked repository. 
- 
  
    
      #started_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The start time for a resource sync attempt. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status for a resource sync attempt. 
- 
  
    
      #target  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the Amazon Web Services resource that is attempted to be synchronized. 
- 
  
    
      #target_revision  ⇒ Types::Revision 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The desired state of the resource as defined in the resource’s ‘config-file` in the linked repository. 
Instance Attribute Details
#events ⇒ Array<Types::ResourceSyncEvent>
The events related to a resource sync attempt.
| 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 | # File 'lib/aws-sdk-codestarconnections/types.rb', line 1221 class ResourceSyncAttempt < Struct.new( :events, :initial_revision, :started_at, :status, :target_revision, :target) SENSITIVE = [] include Aws::Structure end | 
#initial_revision ⇒ Types::Revision
The current state of the resource as defined in the resource’s ‘config-file` in the linked repository.
| 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 | # File 'lib/aws-sdk-codestarconnections/types.rb', line 1221 class ResourceSyncAttempt < Struct.new( :events, :initial_revision, :started_at, :status, :target_revision, :target) SENSITIVE = [] include Aws::Structure end | 
#started_at ⇒ Time
The start time for a resource sync attempt.
| 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 | # File 'lib/aws-sdk-codestarconnections/types.rb', line 1221 class ResourceSyncAttempt < Struct.new( :events, :initial_revision, :started_at, :status, :target_revision, :target) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
The status for a resource sync attempt. The follow are valid statuses:
- 
SYNC-INITIATED - A resource sync attempt has been created and will begin soon. 
- 
SYNCING - Syncing has started and work is being done to reconcile state. 
- 
SYNCED - Syncing has completed successfully. 
- 
SYNC_FAILED - A resource sync attempt has failed. 
| 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 | # File 'lib/aws-sdk-codestarconnections/types.rb', line 1221 class ResourceSyncAttempt < Struct.new( :events, :initial_revision, :started_at, :status, :target_revision, :target) SENSITIVE = [] include Aws::Structure end | 
#target ⇒ String
The name of the Amazon Web Services resource that is attempted to be synchronized.
| 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 | # File 'lib/aws-sdk-codestarconnections/types.rb', line 1221 class ResourceSyncAttempt < Struct.new( :events, :initial_revision, :started_at, :status, :target_revision, :target) SENSITIVE = [] include Aws::Structure end | 
#target_revision ⇒ Types::Revision
The desired state of the resource as defined in the resource’s ‘config-file` in the linked repository. Git sync attempts to update the resource to this state.
| 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 | # File 'lib/aws-sdk-codestarconnections/types.rb', line 1221 class ResourceSyncAttempt < Struct.new( :events, :initial_revision, :started_at, :status, :target_revision, :target) SENSITIVE = [] include Aws::Structure end |