| « PreviousNext » | |
![]() ![]() ![]() | Did this page help you? Yes | No | Tell us about it... |
The template developer uses the AWS CloudFormation resource, AWS::CloudFormation::CustomResource, to specify a custom resource in a template.
In AWS::CloudFormation::CustomResource, all properties are defined by the custom resource provider. There is only one required property: ServiceToken.
All other fields in the resource properties are optional and are sent, verbatim, to the custom resource provider in the
request's ResourceProperties field. The provider defines both the names and the valid
contents of these fields.
These fields are sent in JSON requests from AWS CloudFormation to the custom resource provider in the SNS topic that the provider has configured for this purpose.
The request type is set by the AWS CloudFormation stack operation (create-stack, update-stack, or delete-stack) that was initiated by the template developer for the stack that contains the custom resource.
Must be one of: Create, Update, or Delete.
Required: Yes.
Type: String.
The response URL identifies a pre-signed Amazon S3 bucket that receives responses from the custom resource provider to AWS CloudFormation.
Required: Yes.
Type: String.
The Amazon Resource Name (ARN) that identifies the stack containing the custom resource.
Combining the StackId with the
RequestId forms a value that can be used to uniquely identify a request on a particular
custom resource.
Required: Yes.
Type: String.
A unique ID for the request.
Combining the StackId with the
RequestId forms a value that can be used to uniquely identify a request on a particular
custom resource.
Required: Yes.
Type: String.
The template developer-chosen name (logical ID) of the custom resource in the AWS CloudFormation template. This is provided to facilitate communication between the custom resource provider and the template developer.
Required: Yes.
Type: String.
A required custom resource provider-defined physical ID that is unique for that provider.
Required: Always sent with Update and Delete requests; never sent
with Create.
Type: String.
This field contains the contents of the Properties object sent by the template developer. Its contents are defined by the custom resource provider.
Required: No.
Type: JSON object.
Used only for Update requests. Contains the resource
properties that were declared previous to the update request.
Required: Yes.
Type: JSON object.