interface CustomResourceProviderConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFormation.CustomResourceProviderConfig |
Java | software.amazon.awscdk.services.cloudformation.CustomResourceProviderConfig |
Python | aws_cdk.aws_cloudformation.CustomResourceProviderConfig |
TypeScript (source) | @aws-cdk/aws-cloudformation » CustomResourceProviderConfig |
⚠️ Deprecated: used in {@link ICustomResourceProvider} which is now deprecated
Obtainable from
Custom.bind(), Provider.bind()
Configuration options for custom resource providers.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cloudformation from '@aws-cdk/aws-cloudformation';
const customResourceProviderConfig: cloudformation.CustomResourceProviderConfig = {
serviceToken: 'serviceToken',
};
Properties
| Name | Type | Description |
|---|---|---|
| service | string | The ARN of the SNS topic or the AWS Lambda function which implements this provider. |
serviceToken
⚠️ Deprecated: used in {@link ICustomResourceProvider} which is now deprecated
Type:
string
The ARN of the SNS topic or the AWS Lambda function which implements this provider.

.NET
Java
Python
TypeScript (