Interface CfnDestinationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDestinationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.975Z") @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")
         .roleArn("roleArn")
         // the properties below are optional
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getExpression

      @Stability(Stable) @NotNull String getExpression()
      The rule name to send messages to.
    • getExpressionType

      @Stability(Stable) @NotNull String getExpressionType()
      The type of value in Expression .
    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the new resource.
    • getRoleArn

      @Stability(Stable) @NotNull String getRoleArn()
      The ARN of the IAM Role that authorizes the destination.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the new resource.

      Maximum length is 2048 characters.

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> 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.

    • builder

      @Stability(Stable) static CfnDestinationProps.Builder builder()
      Returns:
      a CfnDestinationProps.Builder of CfnDestinationProps