Class: Aws::ServiceCatalog::Types::CreateServiceActionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceCatalog::Types::CreateServiceActionInput
- Defined in:
- gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb
Overview
When making an API call, you may pass CreateServiceActionInput data as a hash:
{
name: "ServiceActionName", # required
definition_type: "SSM_AUTOMATION", # required, accepts SSM_AUTOMATION
definition: { # required
"Name" => "ServiceActionDefinitionValue",
},
description: "ServiceActionDescription",
accept_language: "AcceptLanguage",
idempotency_token: "IdempotencyToken", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#accept_language ⇒ String
The language code.
-
#definition ⇒ Hash<String,String>
The self-service action definition.
-
#definition_type ⇒ String
The service action definition type.
-
#description ⇒ String
The self-service action description.
-
#idempotency_token ⇒ String
A unique identifier that you provide to ensure idempotency.
-
#name ⇒ String
The self-service action name.
Instance Attribute Details
#accept_language ⇒ String
The language code.
en
- English (default)jp
- Japanesezh
- Chinese
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 1371 class CreateServiceActionInput < Struct.new( :name, :definition_type, :definition, :description, :accept_language, :idempotency_token) SENSITIVE = [] include Aws::Structure end |
#definition ⇒ Hash<String,String>
The self-service action definition. Can be one of the following:
- Name
The name of the AWS Systems Manager document (SSM document). For example,
AWS-RestartEC2Instance
.If you are using a shared SSM document, you must provide the ARN instead of the name.
- Version
The AWS Systems Manager automation document version. For example,
"Version": "1"
- AssumeRole
The Amazon Resource Name (ARN) of the role that performs the self-service actions on your behalf. For example,
"AssumeRole": "arn:aws:iam::12345678910:role/ActionRole"
.To reuse the provisioned product launch role, set to
"AssumeRole": "LAUNCH_ROLE"
.- Parameters
The list of parameters in JSON format.
For example:
[\{"Name":"InstanceId","Type":"TARGET"\}]
or[\{"Name":"InstanceId","Type":"TEXT_VALUE"\}]
.
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 1371 class CreateServiceActionInput < Struct.new( :name, :definition_type, :definition, :description, :accept_language, :idempotency_token) SENSITIVE = [] include Aws::Structure end |
#definition_type ⇒ String
The service action definition type. For example, SSM_AUTOMATION
.
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 1371 class CreateServiceActionInput < Struct.new( :name, :definition_type, :definition, :description, :accept_language, :idempotency_token) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The self-service action description.
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 1371 class CreateServiceActionInput < Struct.new( :name, :definition_type, :definition, :description, :accept_language, :idempotency_token) SENSITIVE = [] include Aws::Structure end |
#idempotency_token ⇒ String
A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
A suitable default value is auto-generated. You should normally not need to pass this option.
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 1371 class CreateServiceActionInput < Struct.new( :name, :definition_type, :definition, :description, :accept_language, :idempotency_token) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The self-service action name.
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 1371 class CreateServiceActionInput < Struct.new( :name, :definition_type, :definition, :description, :accept_language, :idempotency_token) SENSITIVE = [] include Aws::Structure end |