Interface CfnTopicRuleDestinationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopicRuleDestinationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.713Z")
@Stability(Stable)
public interface CfnTopicRuleDestinationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnTopicRuleDestination.
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.iot.*;
CfnTopicRuleDestinationProps cfnTopicRuleDestinationProps = CfnTopicRuleDestinationProps.builder()
.httpUrlProperties(HttpUrlDestinationSummaryProperty.builder()
.confirmationUrl("confirmationUrl")
.build())
.status("status")
.vpcProperties(VpcDestinationPropertiesProperty.builder()
.roleArn("roleArn")
.securityGroups(List.of("securityGroups"))
.subnetIds(List.of("subnetIds"))
.vpcId("vpcId")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicRuleDestinationPropsstatic final classAn implementation forCfnTopicRuleDestinationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHttpUrlProperties
Properties of the HTTP URL. -
getStatus
- IN_PROGRESS - A topic rule destination was created but has not been confirmed.
You can set status to
IN_PROGRESSby callingUpdateTopicRuleDestination. CallingUpdateTopicRuleDestinationcauses a new confirmation challenge to be sent to your confirmation endpoint.- ENABLED - Confirmation was completed, and traffic to this destination is allowed. You can set status to
DISABLEDby callingUpdateTopicRuleDestination. - DISABLED - Confirmation was completed, and traffic to this destination is not allowed. You can set status to
ENABLEDby callingUpdateTopicRuleDestination. - ERROR - Confirmation could not be completed; for example, if the confirmation timed out. You can call
GetTopicRuleDestinationfor details about the error. You can set status toIN_PROGRESSby callingUpdateTopicRuleDestination. CallingUpdateTopicRuleDestinationcauses a new confirmation challenge to be sent to your confirmation endpoint.
-
getVpcProperties
Properties of the virtual private cloud (VPC) connection. -
builder
-