Class: Aws::Budgets::Types::SsmActionDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::SsmActionDefinition
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
Note:
When making an API call, you may pass SsmActionDefinition data as a hash:
{
action_sub_type: "STOP_EC2_INSTANCES", # required, accepts STOP_EC2_INSTANCES, STOP_RDS_INSTANCES
region: "Region", # required
instance_ids: ["InstanceId"], # required
}
The Amazon Web Services Systems Manager (SSM) action definition details.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_sub_type ⇒ String
The action subType.
-
#instance_ids ⇒ Array<String>
The EC2 and RDS instance IDs.
-
#region ⇒ String
The Region to run the SSM document.
Instance Attribute Details
#action_sub_type ⇒ String
The action subType.
2183 2184 2185 2186 2187 2188 2189 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 2183 class SsmActionDefinition < Struct.new( :action_sub_type, :region, :instance_ids) SENSITIVE = [] include Aws::Structure end |
#instance_ids ⇒ Array<String>
The EC2 and RDS instance IDs.
2183 2184 2185 2186 2187 2188 2189 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 2183 class SsmActionDefinition < Struct.new( :action_sub_type, :region, :instance_ids) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The Region to run the SSM document.
2183 2184 2185 2186 2187 2188 2189 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 2183 class SsmActionDefinition < Struct.new( :action_sub_type, :region, :instance_ids) SENSITIVE = [] include Aws::Structure end |