Class: Aws::CodeConnections::Types::ResourceSyncAttempt
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeConnections::Types::ResourceSyncAttempt
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeconnections/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.
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 |
# File 'lib/aws-sdk-codeconnections/types.rb', line 1227 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.
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 |
# File 'lib/aws-sdk-codeconnections/types.rb', line 1227 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.
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 |
# File 'lib/aws-sdk-codeconnections/types.rb', line 1227 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.
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 |
# File 'lib/aws-sdk-codeconnections/types.rb', line 1227 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.
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 |
# File 'lib/aws-sdk-codeconnections/types.rb', line 1227 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.
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 |
# File 'lib/aws-sdk-codeconnections/types.rb', line 1227 class ResourceSyncAttempt < Struct.new( :events, :initial_revision, :started_at, :status, :target_revision, :target) SENSITIVE = [] include Aws::Structure end |