1. Packages
  2. AWS
  3. API Docs
  4. cloudformation
  5. CloudFormationType
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.cloudformation.CloudFormationType

Explore with Pulumi AI

Manages a version of a CloudFormation Type.

Create CloudFormationType Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CloudFormationType(name: string, args: CloudFormationTypeArgs, opts?: CustomResourceOptions);
@overload
def CloudFormationType(resource_name: str,
                       args: CloudFormationTypeArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def CloudFormationType(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       schema_handler_package: Optional[str] = None,
                       type_name: Optional[str] = None,
                       execution_role_arn: Optional[str] = None,
                       logging_config: Optional[CloudFormationTypeLoggingConfigArgs] = None,
                       type: Optional[str] = None)
func NewCloudFormationType(ctx *Context, name string, args CloudFormationTypeArgs, opts ...ResourceOption) (*CloudFormationType, error)
public CloudFormationType(string name, CloudFormationTypeArgs args, CustomResourceOptions? opts = null)
public CloudFormationType(String name, CloudFormationTypeArgs args)
public CloudFormationType(String name, CloudFormationTypeArgs args, CustomResourceOptions options)
type: aws:cloudformation:CloudFormationType
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CloudFormationTypeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CloudFormationTypeArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CloudFormationTypeArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CloudFormationTypeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CloudFormationTypeArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var cloudFormationTypeResource = new Aws.CloudFormation.CloudFormationType("cloudFormationTypeResource", new()
{
    SchemaHandlerPackage = "string",
    TypeName = "string",
    ExecutionRoleArn = "string",
    LoggingConfig = new Aws.CloudFormation.Inputs.CloudFormationTypeLoggingConfigArgs
    {
        LogGroupName = "string",
        LogRoleArn = "string",
    },
    Type = "string",
});
Copy
example, err := cloudformation.NewCloudFormationType(ctx, "cloudFormationTypeResource", &cloudformation.CloudFormationTypeArgs{
	SchemaHandlerPackage: pulumi.String("string"),
	TypeName:             pulumi.String("string"),
	ExecutionRoleArn:     pulumi.String("string"),
	LoggingConfig: &cloudformation.CloudFormationTypeLoggingConfigArgs{
		LogGroupName: pulumi.String("string"),
		LogRoleArn:   pulumi.String("string"),
	},
	Type: pulumi.String("string"),
})
Copy
var cloudFormationTypeResource = new CloudFormationType("cloudFormationTypeResource", CloudFormationTypeArgs.builder()
    .schemaHandlerPackage("string")
    .typeName("string")
    .executionRoleArn("string")
    .loggingConfig(CloudFormationTypeLoggingConfigArgs.builder()
        .logGroupName("string")
        .logRoleArn("string")
        .build())
    .type("string")
    .build());
Copy
cloud_formation_type_resource = aws.cloudformation.CloudFormationType("cloudFormationTypeResource",
    schema_handler_package="string",
    type_name="string",
    execution_role_arn="string",
    logging_config={
        "log_group_name": "string",
        "log_role_arn": "string",
    },
    type="string")
Copy
const cloudFormationTypeResource = new aws.cloudformation.CloudFormationType("cloudFormationTypeResource", {
    schemaHandlerPackage: "string",
    typeName: "string",
    executionRoleArn: "string",
    loggingConfig: {
        logGroupName: "string",
        logRoleArn: "string",
    },
    type: "string",
});
Copy
type: aws:cloudformation:CloudFormationType
properties:
    executionRoleArn: string
    loggingConfig:
        logGroupName: string
        logRoleArn: string
    schemaHandlerPackage: string
    type: string
    typeName: string
Copy

CloudFormationType Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The CloudFormationType resource accepts the following input properties:

SchemaHandlerPackage
This property is required.
Changes to this property will trigger replacement.
string
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
TypeName
This property is required.
Changes to this property will trigger replacement.
string
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
ExecutionRoleArn Changes to this property will trigger replacement. string
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
LoggingConfig Changes to this property will trigger replacement. CloudFormationTypeLoggingConfig
Configuration block containing logging configuration.
Type Changes to this property will trigger replacement. string
CloudFormation Registry Type. For example, RESOURCE or MODULE.
SchemaHandlerPackage
This property is required.
Changes to this property will trigger replacement.
string
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
TypeName
This property is required.
Changes to this property will trigger replacement.
string
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
ExecutionRoleArn Changes to this property will trigger replacement. string
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
LoggingConfig Changes to this property will trigger replacement. CloudFormationTypeLoggingConfigArgs
Configuration block containing logging configuration.
Type Changes to this property will trigger replacement. string
CloudFormation Registry Type. For example, RESOURCE or MODULE.
schemaHandlerPackage
This property is required.
Changes to this property will trigger replacement.
String
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
typeName
This property is required.
Changes to this property will trigger replacement.
String
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
executionRoleArn Changes to this property will trigger replacement. String
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
loggingConfig Changes to this property will trigger replacement. CloudFormationTypeLoggingConfig
Configuration block containing logging configuration.
type Changes to this property will trigger replacement. String
CloudFormation Registry Type. For example, RESOURCE or MODULE.
schemaHandlerPackage
This property is required.
Changes to this property will trigger replacement.
string
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
typeName
This property is required.
Changes to this property will trigger replacement.
string
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
executionRoleArn Changes to this property will trigger replacement. string
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
loggingConfig Changes to this property will trigger replacement. CloudFormationTypeLoggingConfig
Configuration block containing logging configuration.
type Changes to this property will trigger replacement. string
CloudFormation Registry Type. For example, RESOURCE or MODULE.
schema_handler_package
This property is required.
Changes to this property will trigger replacement.
str
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
type_name
This property is required.
Changes to this property will trigger replacement.
str
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
execution_role_arn Changes to this property will trigger replacement. str
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
logging_config Changes to this property will trigger replacement. CloudFormationTypeLoggingConfigArgs
Configuration block containing logging configuration.
type Changes to this property will trigger replacement. str
CloudFormation Registry Type. For example, RESOURCE or MODULE.
schemaHandlerPackage
This property is required.
Changes to this property will trigger replacement.
String
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
typeName
This property is required.
Changes to this property will trigger replacement.
String
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
executionRoleArn Changes to this property will trigger replacement. String
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
loggingConfig Changes to this property will trigger replacement. Property Map
Configuration block containing logging configuration.
type Changes to this property will trigger replacement. String
CloudFormation Registry Type. For example, RESOURCE or MODULE.

Outputs

All input properties are implicitly available as output properties. Additionally, the CloudFormationType resource produces the following output properties:

Arn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
DefaultVersionId string
Identifier of the CloudFormation Type default version.
DeprecatedStatus string
Deprecation status of the version.
Description string
Description of the version.
DocumentationUrl string
URL of the documentation for the CloudFormation Type.
Id string
The provider-assigned unique ID for this managed resource.
IsDefaultVersion bool
Whether the CloudFormation Type version is the default version.
ProvisioningType string
Provisioning behavior of the CloudFormation Type.
Schema string
JSON document of the CloudFormation Type schema.
SourceUrl string
URL of the source code for the CloudFormation Type.
TypeArn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
VersionId string
(Optional) Identifier of the CloudFormation Type version.
Visibility string
Scope of the CloudFormation Type.
Arn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
DefaultVersionId string
Identifier of the CloudFormation Type default version.
DeprecatedStatus string
Deprecation status of the version.
Description string
Description of the version.
DocumentationUrl string
URL of the documentation for the CloudFormation Type.
Id string
The provider-assigned unique ID for this managed resource.
IsDefaultVersion bool
Whether the CloudFormation Type version is the default version.
ProvisioningType string
Provisioning behavior of the CloudFormation Type.
Schema string
JSON document of the CloudFormation Type schema.
SourceUrl string
URL of the source code for the CloudFormation Type.
TypeArn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
VersionId string
(Optional) Identifier of the CloudFormation Type version.
Visibility string
Scope of the CloudFormation Type.
arn String
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
defaultVersionId String
Identifier of the CloudFormation Type default version.
deprecatedStatus String
Deprecation status of the version.
description String
Description of the version.
documentationUrl String
URL of the documentation for the CloudFormation Type.
id String
The provider-assigned unique ID for this managed resource.
isDefaultVersion Boolean
Whether the CloudFormation Type version is the default version.
provisioningType String
Provisioning behavior of the CloudFormation Type.
schema String
JSON document of the CloudFormation Type schema.
sourceUrl String
URL of the source code for the CloudFormation Type.
typeArn String
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
versionId String
(Optional) Identifier of the CloudFormation Type version.
visibility String
Scope of the CloudFormation Type.
arn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
defaultVersionId string
Identifier of the CloudFormation Type default version.
deprecatedStatus string
Deprecation status of the version.
description string
Description of the version.
documentationUrl string
URL of the documentation for the CloudFormation Type.
id string
The provider-assigned unique ID for this managed resource.
isDefaultVersion boolean
Whether the CloudFormation Type version is the default version.
provisioningType string
Provisioning behavior of the CloudFormation Type.
schema string
JSON document of the CloudFormation Type schema.
sourceUrl string
URL of the source code for the CloudFormation Type.
typeArn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
versionId string
(Optional) Identifier of the CloudFormation Type version.
visibility string
Scope of the CloudFormation Type.
arn str
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
default_version_id str
Identifier of the CloudFormation Type default version.
deprecated_status str
Deprecation status of the version.
description str
Description of the version.
documentation_url str
URL of the documentation for the CloudFormation Type.
id str
The provider-assigned unique ID for this managed resource.
is_default_version bool
Whether the CloudFormation Type version is the default version.
provisioning_type str
Provisioning behavior of the CloudFormation Type.
schema str
JSON document of the CloudFormation Type schema.
source_url str
URL of the source code for the CloudFormation Type.
type_arn str
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
version_id str
(Optional) Identifier of the CloudFormation Type version.
visibility str
Scope of the CloudFormation Type.
arn String
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
defaultVersionId String
Identifier of the CloudFormation Type default version.
deprecatedStatus String
Deprecation status of the version.
description String
Description of the version.
documentationUrl String
URL of the documentation for the CloudFormation Type.
id String
The provider-assigned unique ID for this managed resource.
isDefaultVersion Boolean
Whether the CloudFormation Type version is the default version.
provisioningType String
Provisioning behavior of the CloudFormation Type.
schema String
JSON document of the CloudFormation Type schema.
sourceUrl String
URL of the source code for the CloudFormation Type.
typeArn String
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
versionId String
(Optional) Identifier of the CloudFormation Type version.
visibility String
Scope of the CloudFormation Type.

Look up Existing CloudFormationType Resource

Get an existing CloudFormationType resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: CloudFormationTypeState, opts?: CustomResourceOptions): CloudFormationType
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        default_version_id: Optional[str] = None,
        deprecated_status: Optional[str] = None,
        description: Optional[str] = None,
        documentation_url: Optional[str] = None,
        execution_role_arn: Optional[str] = None,
        is_default_version: Optional[bool] = None,
        logging_config: Optional[CloudFormationTypeLoggingConfigArgs] = None,
        provisioning_type: Optional[str] = None,
        schema: Optional[str] = None,
        schema_handler_package: Optional[str] = None,
        source_url: Optional[str] = None,
        type: Optional[str] = None,
        type_arn: Optional[str] = None,
        type_name: Optional[str] = None,
        version_id: Optional[str] = None,
        visibility: Optional[str] = None) -> CloudFormationType
func GetCloudFormationType(ctx *Context, name string, id IDInput, state *CloudFormationTypeState, opts ...ResourceOption) (*CloudFormationType, error)
public static CloudFormationType Get(string name, Input<string> id, CloudFormationTypeState? state, CustomResourceOptions? opts = null)
public static CloudFormationType get(String name, Output<String> id, CloudFormationTypeState state, CustomResourceOptions options)
resources:  _:    type: aws:cloudformation:CloudFormationType    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
DefaultVersionId string
Identifier of the CloudFormation Type default version.
DeprecatedStatus string
Deprecation status of the version.
Description string
Description of the version.
DocumentationUrl string
URL of the documentation for the CloudFormation Type.
ExecutionRoleArn Changes to this property will trigger replacement. string
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
IsDefaultVersion bool
Whether the CloudFormation Type version is the default version.
LoggingConfig Changes to this property will trigger replacement. CloudFormationTypeLoggingConfig
Configuration block containing logging configuration.
ProvisioningType string
Provisioning behavior of the CloudFormation Type.
Schema string
JSON document of the CloudFormation Type schema.
SchemaHandlerPackage Changes to this property will trigger replacement. string
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
SourceUrl string
URL of the source code for the CloudFormation Type.
Type Changes to this property will trigger replacement. string
CloudFormation Registry Type. For example, RESOURCE or MODULE.
TypeArn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
TypeName Changes to this property will trigger replacement. string
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
VersionId string
(Optional) Identifier of the CloudFormation Type version.
Visibility string
Scope of the CloudFormation Type.
Arn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
DefaultVersionId string
Identifier of the CloudFormation Type default version.
DeprecatedStatus string
Deprecation status of the version.
Description string
Description of the version.
DocumentationUrl string
URL of the documentation for the CloudFormation Type.
ExecutionRoleArn Changes to this property will trigger replacement. string
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
IsDefaultVersion bool
Whether the CloudFormation Type version is the default version.
LoggingConfig Changes to this property will trigger replacement. CloudFormationTypeLoggingConfigArgs
Configuration block containing logging configuration.
ProvisioningType string
Provisioning behavior of the CloudFormation Type.
Schema string
JSON document of the CloudFormation Type schema.
SchemaHandlerPackage Changes to this property will trigger replacement. string
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
SourceUrl string
URL of the source code for the CloudFormation Type.
Type Changes to this property will trigger replacement. string
CloudFormation Registry Type. For example, RESOURCE or MODULE.
TypeArn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
TypeName Changes to this property will trigger replacement. string
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
VersionId string
(Optional) Identifier of the CloudFormation Type version.
Visibility string
Scope of the CloudFormation Type.
arn String
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
defaultVersionId String
Identifier of the CloudFormation Type default version.
deprecatedStatus String
Deprecation status of the version.
description String
Description of the version.
documentationUrl String
URL of the documentation for the CloudFormation Type.
executionRoleArn Changes to this property will trigger replacement. String
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
isDefaultVersion Boolean
Whether the CloudFormation Type version is the default version.
loggingConfig Changes to this property will trigger replacement. CloudFormationTypeLoggingConfig
Configuration block containing logging configuration.
provisioningType String
Provisioning behavior of the CloudFormation Type.
schema String
JSON document of the CloudFormation Type schema.
schemaHandlerPackage Changes to this property will trigger replacement. String
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
sourceUrl String
URL of the source code for the CloudFormation Type.
type Changes to this property will trigger replacement. String
CloudFormation Registry Type. For example, RESOURCE or MODULE.
typeArn String
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
typeName Changes to this property will trigger replacement. String
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
versionId String
(Optional) Identifier of the CloudFormation Type version.
visibility String
Scope of the CloudFormation Type.
arn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
defaultVersionId string
Identifier of the CloudFormation Type default version.
deprecatedStatus string
Deprecation status of the version.
description string
Description of the version.
documentationUrl string
URL of the documentation for the CloudFormation Type.
executionRoleArn Changes to this property will trigger replacement. string
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
isDefaultVersion boolean
Whether the CloudFormation Type version is the default version.
loggingConfig Changes to this property will trigger replacement. CloudFormationTypeLoggingConfig
Configuration block containing logging configuration.
provisioningType string
Provisioning behavior of the CloudFormation Type.
schema string
JSON document of the CloudFormation Type schema.
schemaHandlerPackage Changes to this property will trigger replacement. string
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
sourceUrl string
URL of the source code for the CloudFormation Type.
type Changes to this property will trigger replacement. string
CloudFormation Registry Type. For example, RESOURCE or MODULE.
typeArn string
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
typeName Changes to this property will trigger replacement. string
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
versionId string
(Optional) Identifier of the CloudFormation Type version.
visibility string
Scope of the CloudFormation Type.
arn str
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
default_version_id str
Identifier of the CloudFormation Type default version.
deprecated_status str
Deprecation status of the version.
description str
Description of the version.
documentation_url str
URL of the documentation for the CloudFormation Type.
execution_role_arn Changes to this property will trigger replacement. str
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
is_default_version bool
Whether the CloudFormation Type version is the default version.
logging_config Changes to this property will trigger replacement. CloudFormationTypeLoggingConfigArgs
Configuration block containing logging configuration.
provisioning_type str
Provisioning behavior of the CloudFormation Type.
schema str
JSON document of the CloudFormation Type schema.
schema_handler_package Changes to this property will trigger replacement. str
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
source_url str
URL of the source code for the CloudFormation Type.
type Changes to this property will trigger replacement. str
CloudFormation Registry Type. For example, RESOURCE or MODULE.
type_arn str
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
type_name Changes to this property will trigger replacement. str
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
version_id str
(Optional) Identifier of the CloudFormation Type version.
visibility str
Scope of the CloudFormation Type.
arn String
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type version. See also type_arn.
defaultVersionId String
Identifier of the CloudFormation Type default version.
deprecatedStatus String
Deprecation status of the version.
description String
Description of the version.
documentationUrl String
URL of the documentation for the CloudFormation Type.
executionRoleArn Changes to this property will trigger replacement. String
Amazon Resource Name (ARN) of the IAM Role for CloudFormation to assume when invoking the extension. If your extension calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the extension handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the extension handler, thereby supplying your extension with the appropriate credentials.
isDefaultVersion Boolean
Whether the CloudFormation Type version is the default version.
loggingConfig Changes to this property will trigger replacement. Property Map
Configuration block containing logging configuration.
provisioningType String
Provisioning behavior of the CloudFormation Type.
schema String
JSON document of the CloudFormation Type schema.
schemaHandlerPackage Changes to this property will trigger replacement. String
URL to the S3 bucket containing the extension project package that contains the necessary files for the extension you want to register. Must begin with s3:// or https://. For example, s3://example-bucket/example-object.
sourceUrl String
URL of the source code for the CloudFormation Type.
type Changes to this property will trigger replacement. String
CloudFormation Registry Type. For example, RESOURCE or MODULE.
typeArn String
(Optional) Amazon Resource Name (ARN) of the CloudFormation Type. See also arn.
typeName Changes to this property will trigger replacement. String
CloudFormation Type name. For example, ExampleCompany::ExampleService::ExampleResource.
versionId String
(Optional) Identifier of the CloudFormation Type version.
visibility String
Scope of the CloudFormation Type.

Supporting Types

CloudFormationTypeLoggingConfig
, CloudFormationTypeLoggingConfigArgs

LogGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the CloudWatch Log Group where CloudFormation sends error logging information when invoking the type's handlers.
LogRoleArn
This property is required.
Changes to this property will trigger replacement.
string
Amazon Resource Name (ARN) of the IAM Role CloudFormation assumes when sending error logging information to CloudWatch Logs.
LogGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the CloudWatch Log Group where CloudFormation sends error logging information when invoking the type's handlers.
LogRoleArn
This property is required.
Changes to this property will trigger replacement.
string
Amazon Resource Name (ARN) of the IAM Role CloudFormation assumes when sending error logging information to CloudWatch Logs.
logGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the CloudWatch Log Group where CloudFormation sends error logging information when invoking the type's handlers.
logRoleArn
This property is required.
Changes to this property will trigger replacement.
String
Amazon Resource Name (ARN) of the IAM Role CloudFormation assumes when sending error logging information to CloudWatch Logs.
logGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the CloudWatch Log Group where CloudFormation sends error logging information when invoking the type's handlers.
logRoleArn
This property is required.
Changes to this property will trigger replacement.
string
Amazon Resource Name (ARN) of the IAM Role CloudFormation assumes when sending error logging information to CloudWatch Logs.
log_group_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the CloudWatch Log Group where CloudFormation sends error logging information when invoking the type's handlers.
log_role_arn
This property is required.
Changes to this property will trigger replacement.
str
Amazon Resource Name (ARN) of the IAM Role CloudFormation assumes when sending error logging information to CloudWatch Logs.
logGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the CloudWatch Log Group where CloudFormation sends error logging information when invoking the type's handlers.
logRoleArn
This property is required.
Changes to this property will trigger replacement.
String
Amazon Resource Name (ARN) of the IAM Role CloudFormation assumes when sending error logging information to CloudWatch Logs.

Import

Using pulumi import, import aws_cloudformation_type using the type version Amazon Resource Name (ARN). For example:

$ pulumi import aws:cloudformation/cloudFormationType:CloudFormationType example arn:aws:cloudformation:us-east-1:123456789012:type/resource/ExampleCompany-ExampleService-ExampleType/1
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.