Interface CfnDestinationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDestinationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:03.307Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDestinationProps
static final class
An implementation forCfnDestinationProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDestinationProps.Builder
builder()
default String
The 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 String
The 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.Builder
ofCfnDestinationProps
-