Class: Aws::Proton::Types::ServiceSyncBlockerSummary

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb

Overview

If a service instance is manually updated, Proton wants to prevent accidentally overriding a manual change.

A blocker is created because of the manual update or deletion of a service instance. The summary describes the blocker as being active or resolved.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#latest_blockersArray<Types::SyncBlocker>

The latest active blockers for the synced service.

Returns:



5299
5300
5301
5302
5303
5304
5305
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5299

class ServiceSyncBlockerSummary < Struct.new(
  :latest_blockers,
  :service_instance_name,
  :service_name)
  SENSITIVE = []
  include Aws::Structure
end

#service_instance_nameString

The name of the service instance that you want sync your service configuration with.

Returns:

  • (String)


5299
5300
5301
5302
5303
5304
5305
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5299

class ServiceSyncBlockerSummary < Struct.new(
  :latest_blockers,
  :service_instance_name,
  :service_name)
  SENSITIVE = []
  include Aws::Structure
end

#service_nameString

The name of the service that you want to get the sync blocker summary for. If given a service instance name and a service name, it will return the blockers only applying to the instance that is blocked.

If given only a service name, it will return the blockers that apply to all of the instances. In order to get the blockers for a single instance, you will need to make two distinct calls, one to get the sync blocker summary for the service and the other to get the sync blocker for the service instance.

Returns:

  • (String)


5299
5300
5301
5302
5303
5304
5305
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5299

class ServiceSyncBlockerSummary < Struct.new(
  :latest_blockers,
  :service_instance_name,
  :service_name)
  SENSITIVE = []
  include Aws::Structure
end