@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.076Z") @Stability(value=Stable) public interface CfnDestinationProps extends software.amazon.jsii.JsiiSerializable
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")
.roleArn("roleArn")
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDestinationProps.Builder
A builder for
CfnDestinationProps |
static class |
CfnDestinationProps.Jsii$Proxy
An implementation for
CfnDestinationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDestinationProps.Builder |
builder() |
default String |
getDescription()
The description of the new resource.
|
String |
getExpression()
The rule name to send messages to.
|
String |
getExpressionType()
The type of value in `Expression` .
|
String |
getName()
The name of the new resource.
|
String |
getRoleArn()
The ARN of the IAM Role that authorizes the destination.
|
default List<CfnTag> |
getTags()
The tags are an array of key-value pairs to attach to the specified resource.
|
@Stability(value=Stable) @NotNull String getExpression()
@Stability(value=Stable) @NotNull String getExpressionType()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @Nullable default String getDescription()
Maximum length is 2048 characters.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
Tags can have a minimum of 0 and a maximum of 50 items.
@Stability(value=Stable) static CfnDestinationProps.Builder builder()
CfnDestinationProps.Builder of CfnDestinationPropsCopyright © 2022. All rights reserved.