Class: Aws::ResilienceHub::Types::AppComponent
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResilienceHub::Types::AppComponent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resiliencehub/types.rb
Overview
Defines an Application Component.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#additional_info ⇒ Hash<String,Array<String>>
Additional configuration parameters for an Resilience Hub application.
-
#id ⇒ String
Identifier of the Application Component.
-
#name ⇒ String
Name of the Application Component.
-
#type ⇒ String
The type of Application Component.
Instance Attribute Details
#additional_info ⇒ Hash<String,Array<String>>
Additional configuration parameters for an Resilience Hub application. If you want to implement ‘additionalInfo` through the Resilience Hub console rather than using an API call, see [Configure the application configuration parameters].
<note markdown=“1”> Currently, this parameter accepts a key-value mapping (in a string format) of only one failover region and one associated account.
Key: `"failover-regions"`
Value: `"[{"region":"<REGION>",
“accounts”:}]“‘
</note>
[1]: docs.aws.amazon.com/resilience-hub/latest/userguide/app-config-param.html
617 618 619 620 621 622 623 624 |
# File 'lib/aws-sdk-resiliencehub/types.rb', line 617 class AppComponent < Struct.new( :additional_info, :id, :name, :type) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
Identifier of the Application Component.
617 618 619 620 621 622 623 624 |
# File 'lib/aws-sdk-resiliencehub/types.rb', line 617 class AppComponent < Struct.new( :additional_info, :id, :name, :type) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Name of the Application Component.
617 618 619 620 621 622 623 624 |
# File 'lib/aws-sdk-resiliencehub/types.rb', line 617 class AppComponent < Struct.new( :additional_info, :id, :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of Application Component.
617 618 619 620 621 622 623 624 |
# File 'lib/aws-sdk-resiliencehub/types.rb', line 617 class AppComponent < Struct.new( :additional_info, :id, :name, :type) SENSITIVE = [] include Aws::Structure end |