Class: Aws::Proton::Types::ComponentState
- Inherits:
-
Struct
- Object
- Struct
- Aws::Proton::Types::ComponentState
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-proton/types.rb
Overview
The detailed data about the current state of the component.
Constant Summary collapse
- SENSITIVE =
[:service_spec, :template_file]
Instance Attribute Summary collapse
-
#service_instance_name ⇒ String
The name of the service instance that this component is attached to.
-
#service_name ⇒ String
The name of the service that ‘serviceInstanceName` is associated with.
-
#service_spec ⇒ String
The service spec that the component uses to access service inputs.
-
#template_file ⇒ String
The template file used.
Instance Attribute Details
#service_instance_name ⇒ String
The name of the service instance that this component is attached to. Provided when a component is attached to a service instance.
349 350 351 352 353 354 355 356 |
# File 'lib/aws-sdk-proton/types.rb', line 349 class ComponentState < Struct.new( :service_instance_name, :service_name, :service_spec, :template_file) SENSITIVE = [:service_spec, :template_file] include Aws::Structure end |
#service_name ⇒ String
The name of the service that ‘serviceInstanceName` is associated with. Provided when a component is attached to a service instance.
349 350 351 352 353 354 355 356 |
# File 'lib/aws-sdk-proton/types.rb', line 349 class ComponentState < Struct.new( :service_instance_name, :service_name, :service_spec, :template_file) SENSITIVE = [:service_spec, :template_file] include Aws::Structure end |
#service_spec ⇒ String
The service spec that the component uses to access service inputs. Provided when a component is attached to a service instance.
349 350 351 352 353 354 355 356 |
# File 'lib/aws-sdk-proton/types.rb', line 349 class ComponentState < Struct.new( :service_instance_name, :service_name, :service_spec, :template_file) SENSITIVE = [:service_spec, :template_file] include Aws::Structure end |
#template_file ⇒ String
The template file used.
349 350 351 352 353 354 355 356 |
# File 'lib/aws-sdk-proton/types.rb', line 349 class ComponentState < Struct.new( :service_instance_name, :service_name, :service_spec, :template_file) SENSITIVE = [:service_spec, :template_file] include Aws::Structure end |