Set Type Configuration
cloudformation_set_type_configuration | R Documentation |
Specifies the configuration data for a registered CloudFormation extension, in the given account and Region¶
Description¶
Specifies the configuration data for a registered CloudFormation extension, in the given account and Region.
To view the current configuration data for an extension, refer to the
ConfigurationSchema
element of describe_type
. For more information,
see Edit configuration data for extensions in your
account
in the CloudFormation User Guide.
It's strongly recommended that you use dynamic references to restrict sensitive configuration definitions, such as third-party credentials. For more details on dynamic references, see Specify values stored in other services using dynamic references in the CloudFormation User Guide.
Usage¶
cloudformation_set_type_configuration(TypeArn, Configuration,
ConfigurationAlias, TypeName, Type)
Arguments¶
TypeArn |
The Amazon Resource Name (ARN) for the extension, in this account and Region. For public extensions, this will be the ARN assigned when you call
the Do not include the extension versions suffix at the end of the ARN. You can set the configuration for an extension, but not for a specific extension version. |
Configuration |
[required] The configuration data for the extension, in this account and Region. The configuration data must be formatted as JSON, and validate
against the schema returned in the |
ConfigurationAlias |
An alias by which to refer to this extension configuration data. Conditional: Specifying a configuration alias is required when setting a configuration for a resource type extension. |
TypeName |
The name of the extension. Conditional: You must specify |
Type |
The type of extension. Conditional: You must specify |
Value¶
A list with the following syntax:
list(
ConfigurationArn = "string"
)
Request syntax¶
svc$set_type_configuration(
TypeArn = "string",
Configuration = "string",
ConfigurationAlias = "string",
TypeName = "string",
Type = "RESOURCE"|"MODULE"|"HOOK"
)