interface CfnTopicRuleDestinationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnTopicRuleDestinationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnTopicRuleDestinationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnTopicRuleDestinationMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnTopicRuleDestinationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnTopicRuleDestinationMixinProps |
Properties for CfnTopicRuleDestinationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const cfnTopicRuleDestinationMixinProps: iot_mixins.CfnTopicRuleDestinationMixinProps = {
httpUrlProperties: {
confirmationUrl: 'confirmationUrl',
},
status: 'status',
vpcProperties: {
roleArn: 'roleArn',
securityGroups: ['securityGroups'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| http | IResolvable | Http | Properties of the HTTP URL. |
| status? | string | - IN_PROGRESS - A topic rule destination was created but has not been confirmed. |
| vpc | IResolvable | Vpc | Properties of the virtual private cloud (VPC) connection. |
httpUrlProperties?
Type:
IResolvable | Http
(optional)
Properties of the HTTP URL.
status?
Type:
string
(optional)
- IN_PROGRESS - A topic rule destination was created but has not been confirmed.
You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination . Calling UpdateTopicRuleDestination causes 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.
vpcProperties?
Type:
IResolvable | Vpc
(optional)
Properties of the virtual private cloud (VPC) connection.

.NET
Go
Java
Python
TypeScript