Interface CfnDestinationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDestinationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.510Z")
@Stability(Stable)
public interface CfnDestinationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDestinationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotwireless.*;
CfnDestinationMixinProps cfnDestinationMixinProps = CfnDestinationMixinProps.builder()
.description("description")
.expression("expression")
.expressionType("expressionType")
.name("name")
.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 forCfnDestinationMixinPropsstatic final classAn implementation forCfnDestinationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the new resource.default StringThe rule name to send messages to.default StringThe type of value inExpression.default StringgetName()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
-
getDescription
The description of the new resource.Maximum length is 2048 characters.
- See Also:
-
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:
-
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
CfnDestinationMixinProps.BuilderofCfnDestinationMixinProps
-