Interface CfnCustomResourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomResourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:58.086Z")
@Stability(Stable)
public interface CfnCustomResourceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCustomResource
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cloudformation.*; CfnCustomResourceProps cfnCustomResourceProps = CfnCustomResourceProps.builder() .serviceToken("serviceToken") // the properties below are optional .serviceTimeout(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCustomResourceProps
static final class
An implementation forCfnCustomResourceProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getServiceToken
The service token, such as an Amazon SNS topic ARN or Lambda function ARN.The service token must be from the same Region as the stack.
Updates aren't supported.
- See Also:
-
getServiceTimeout
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).
- See Also:
-
builder
- Returns:
- a
CfnCustomResourceProps.Builder
ofCfnCustomResourceProps
-