Interface CfnDestinationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDestinationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:07.804Z")
@Stability(Stable)
public interface CfnDestinationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDestination.
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.iotwireless.*;
CfnDestinationProps cfnDestinationProps = CfnDestinationProps.builder()
.expression("expression")
.expressionType("expressionType")
.name("name")
// the properties below are optional
.description("description")
.roleArn("roleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDestinationPropsstatic final classAn implementation forCfnDestinationProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDestinationProps.Builderbuilder()default StringThe description of the new resource.The rule name to send messages to.The type of value inExpression.getName()The name of the new resource.default StringThe ARN of the IAM Role that authorizes the destination.getTags()The tags are an array of key-value pairs to attach to the specified resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExpression
The rule name to send messages to.- See Also:
-
getExpressionType
The type of value inExpression.- See Also:
-
getName
The name of the new resource.- See Also:
-
getDescription
The description of the new resource.Maximum length is 2048 characters.
- See Also:
-
getRoleArn
The ARN of the IAM Role that authorizes the destination.- See Also:
-
getTags
The tags are an array of key-value pairs to attach to the specified resource.Tags can have a minimum of 0 and a maximum of 50 items.
- See Also:
-
builder
- Returns:
- a
CfnDestinationProps.BuilderofCfnDestinationProps
-