Class: Aws::CloudFormation::Types::RegisterTypeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::RegisterTypeInput
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
A unique identifier that acts as an idempotency key for this registration request.
-
#execution_role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role for CloudFormation to assume when invoking the extension.
-
#logging_config ⇒ Types::LoggingConfig
Specifies logging configuration information for an extension.
-
#schema_handler_package ⇒ String
A URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register.
-
#type ⇒ String
The kind of extension.
-
#type_name ⇒ String
The name of the extension being registered.
Instance Attribute Details
#client_request_token ⇒ String
A unique identifier that acts as an idempotency key for this registration request. Specifying a client request token prevents CloudFormation from generating more than one version of an extension from the same registration request, even if the request is submitted multiple times.
6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6569 class RegisterTypeInput < Struct.new( :type, :type_name, :schema_handler_package, :logging_config, :execution_role_arn, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#execution_role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role for CloudFormation to assume when invoking the extension.
For CloudFormation to assume the specified execution role, the role
must contain a trust relationship with the CloudFormation service
principal (resources.cloudformation.amazonaws.com
). For more
information about adding trust relationships, see Modifying a role
trust policy in the Identity and Access Management User Guide.
If your extension calls Amazon Web Services APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those Amazon Web Services APIs, and provision that execution role in your account. When CloudFormation needs to invoke the resource type handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the resource type handler, thereby supplying your resource type with the appropriate credentials.
6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6569 class RegisterTypeInput < Struct.new( :type, :type_name, :schema_handler_package, :logging_config, :execution_role_arn, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#logging_config ⇒ Types::LoggingConfig
Specifies logging configuration information for an extension.
6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6569 class RegisterTypeInput < Struct.new( :type, :type_name, :schema_handler_package, :logging_config, :execution_role_arn, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#schema_handler_package ⇒ String
A URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register.
For information about generating a schema handler package for the extension you want to register, see submit in the CloudFormation Command Line Interface (CLI) User Guide.
6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6569 class RegisterTypeInput < Struct.new( :type, :type_name, :schema_handler_package, :logging_config, :execution_role_arn, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The kind of extension.
6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6569 class RegisterTypeInput < Struct.new( :type, :type_name, :schema_handler_package, :logging_config, :execution_role_arn, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#type_name ⇒ String
The name of the extension being registered.
We suggest that extension names adhere to the following patterns:
For resource types,
company_or_organization::service::type
.For modules,
company_or_organization::service::type::MODULE
.For hooks,
MyCompany::Testing::MyTestHook
.
Alexa
AMZN
Amazon
AWS
Custom
Dev
6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6569 class RegisterTypeInput < Struct.new( :type, :type_name, :schema_handler_package, :logging_config, :execution_role_arn, :client_request_token) SENSITIVE = [] include Aws::Structure end |