Class CustomResourceProps.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<CustomResourceProps>
- Enclosing interface:
CustomResourceProps
CustomResourceProps
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Deprecated.properties
(Map<String, ? extends Object> properties) Deprecated.provider
(ICustomResourceProvider provider) Deprecated.removalPolicy
(RemovalPolicy removalPolicy) Deprecated.resourceType
(String resourceType) Deprecated.
-
Constructor Details
-
Builder
public Builder()Deprecated.
-
-
Method Details
-
provider
@Stability(Deprecated) @Deprecated public CustomResourceProps.Builder provider(ICustomResourceProvider provider) Deprecated.Sets the value ofCustomResourceProps.getProvider()
- Parameters:
provider
- The provider which implements the custom resource. This parameter is required. You can implement a provider by listening to raw AWS CloudFormation events through an SNS topic or an AWS Lambda function or use the CDK's custom resource provider framework which makes it easier to implement robust providers.import software.amazon.awscdk.customresources.*; import software.amazon.awscdk.services.lambda.*; import software.amazon.awscdk.core.Stack; Function myOnEventLambda; Function myIsCompleteLambda; Stack stack = new Stack(); Provider provider = Provider.Builder.create(stack, "myProvider") .onEventHandler(myOnEventLambda) .isCompleteHandler(myIsCompleteLambda) .build();
import software.amazon.awscdk.services.cloudformation.*; import software.amazon.awscdk.services.lambda.*; Function myFunction; // invoke an AWS Lambda function when a lifecycle event occurs: CustomResourceProvider provider = CustomResourceProvider.fromLambda(myFunction);
import software.amazon.awscdk.services.cloudformation.*; import software.amazon.awscdk.services.sns.*; Topic myTopic; // publish lifecycle events to an SNS topic: CustomResourceProvider provider = CustomResourceProvider.fromTopic(myTopic);
- Returns:
this
-
properties
@Stability(Deprecated) @Deprecated public CustomResourceProps.Builder properties(Map<String, ? extends Object> properties) Deprecated.Sets the value ofCustomResourceProps.getProperties()
- Parameters:
properties
- Properties to pass to the Lambda.- Returns:
this
-
removalPolicy
@Stability(Deprecated) @Deprecated public CustomResourceProps.Builder removalPolicy(RemovalPolicy removalPolicy) Deprecated.Sets the value ofCustomResourceProps.getRemovalPolicy()
- Parameters:
removalPolicy
- The policy to apply when this resource is removed from the application.- Returns:
this
-
resourceType
@Stability(Deprecated) @Deprecated public CustomResourceProps.Builder resourceType(String resourceType) Deprecated.Sets the value ofCustomResourceProps.getResourceType()
- Parameters:
resourceType
- For custom resources, you can specify AWS::CloudFormation::CustomResource (the default) as the resource type, or you can specify your own resource type name. For example, you can use "Custom::MyCustomResourceTypeName".Custom resource type names must begin with "Custom::" and can include alphanumeric characters and the following characters: _@-. You can specify a custom resource type name up to a maximum length of 60 characters. You cannot change the type during an update.
Using your own resource type names helps you quickly differentiate the types of custom resources in your stack. For example, if you had two custom resources that conduct two different ping tests, you could name their type as Custom::PingTester to make them easily identifiable as ping testers (instead of using AWS::CloudFormation::CustomResource).
- Returns:
this
-
build
Deprecated.Builds the configured instance.- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<CustomResourceProps>
- Returns:
- a new instance of
CustomResourceProps
- Throws:
NullPointerException
- if any required attribute was not provided
-