Class: Aws::Budgets::Types::Definition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::Definition
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
Note:
When making an API call, you may pass Definition data as a hash:
{
iam_action_definition: {
policy_arn: "PolicyArn", # required
roles: ["Role"],
groups: ["Group"],
users: ["User"],
},
scp_action_definition: {
policy_id: "PolicyId", # required
target_ids: ["TargetId"], # required
},
ssm_action_definition: {
action_sub_type: "STOP_EC2_INSTANCES", # required, accepts STOP_EC2_INSTANCES, STOP_RDS_INSTANCES
region: "Region", # required
instance_ids: ["InstanceId"], # required
},
}
Specifies all of the type-specific parameters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iam_action_definition ⇒ Types::IamActionDefinition
The Identity and Access Management (IAM) action definition details.
-
#scp_action_definition ⇒ Types::ScpActionDefinition
The service control policies (SCPs) action definition details.
-
#ssm_action_definition ⇒ Types::SsmActionDefinition
The Amazon Web Services Systems Manager (SSM) action definition details.
Instance Attribute Details
#iam_action_definition ⇒ Types::IamActionDefinition
The Identity and Access Management (IAM) action definition details.
1017 1018 1019 1020 1021 1022 1023 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1017 class Definition < Struct.new( :iam_action_definition, :scp_action_definition, :ssm_action_definition) SENSITIVE = [] include Aws::Structure end |
#scp_action_definition ⇒ Types::ScpActionDefinition
The service control policies (SCPs) action definition details.
1017 1018 1019 1020 1021 1022 1023 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1017 class Definition < Struct.new( :iam_action_definition, :scp_action_definition, :ssm_action_definition) SENSITIVE = [] include Aws::Structure end |
#ssm_action_definition ⇒ Types::SsmActionDefinition
The Amazon Web Services Systems Manager (SSM) action definition details.
1017 1018 1019 1020 1021 1022 1023 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1017 class Definition < Struct.new( :iam_action_definition, :scp_action_definition, :ssm_action_definition) SENSITIVE = [] include Aws::Structure end |