interface CfnCustomResourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins.CfnCustomResourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/mixins#CfnCustomResourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.mixins.CfnCustomResourceMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnCustomResourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudformation » mixins » CfnCustomResourceMixinProps |
Properties for CfnCustomResourcePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudformation_mixins } from '@aws-cdk/mixins-preview/aws-cloudformation';
const cfnCustomResourceMixinProps: cloudformation_mixins.CfnCustomResourceMixinProps = {
serviceTimeout: 123,
serviceToken: 'serviceToken',
};
Properties
| Name | Type | Description |
|---|---|---|
| service | number | The maximum time, in seconds, that can elapse before a custom resource operation times out. |
| service | string | The service token, such as an Amazon topic ARN or Lambda function ARN. |
serviceTimeout?
Type:
number
(optional)
The maximum time, in seconds, that can elapse before a custom resource operation times out.
The value must be an integer from 1 to 3600. The default value is 3600 seconds (1 hour).
serviceToken?
Type:
string
(optional)
The service token, such as an Amazon topic ARN or Lambda function ARN.
The service token must be from the same Region as the stack.
Updates aren't supported.

.NET
Go
Java
Python
TypeScript