Interface CfnTopicRuleDestinationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopicRuleDestinationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-10T17:52:03.690Z")
@Stability(Stable)
public interface CfnTopicRuleDestinationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnTopicRuleDestinationPropsMixin.
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.iot.*;
CfnTopicRuleDestinationMixinProps cfnTopicRuleDestinationMixinProps = CfnTopicRuleDestinationMixinProps.builder()
.httpUrlProperties(HttpUrlDestinationSummaryProperty.builder()
.confirmationUrl("confirmationUrl")
.build())
.influxDbProperties(InfluxDBDestinationPropertiesProperty.builder()
.endpoint("endpoint")
.influxDbVersion("influxDbVersion")
.secretId("secretId")
.secretKey("secretKey")
.secretType("secretType")
.build())
.status("status")
.vpcProperties(VpcDestinationPropertiesProperty.builder()
.roleArn("roleArn")
.securityGroups(List.of("securityGroups"))
.subnetIds(List.of("subnetIds"))
.vpcId("vpcId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicRuleDestinationMixinPropsstatic final classAn implementation forCfnTopicRuleDestinationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectProperties of the HTTP URL.default ObjectReturns union: eitherIResolvableorCfnTopicRuleDestinationPropsMixin.InfluxDBDestinationPropertiesPropertydefault StringIN_PROGRESS - A topic rule destination was created but has not been confirmed.default ObjectProperties of the virtual private cloud (VPC) connection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHttpUrlProperties
Properties of the HTTP URL.Returns union: either
IResolvableorCfnTopicRuleDestinationPropsMixin.HttpUrlDestinationSummaryProperty- See Also:
-
getInfluxDbProperties
Returns union: eitherIResolvableorCfnTopicRuleDestinationPropsMixin.InfluxDBDestinationPropertiesProperty- See Also:
-
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.
- See Also:
-
getVpcProperties
Properties of the virtual private cloud (VPC) connection.Returns union: either
IResolvableorCfnTopicRuleDestinationPropsMixin.VpcDestinationPropertiesProperty- See Also:
-
builder
-