@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.916Z") @Stability(value=Stable) public interface CfnTopicRuleDestinationProps 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.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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTopicRuleDestinationProps.Builder
A builder for
CfnTopicRuleDestinationProps |
static class |
CfnTopicRuleDestinationProps.Jsii$Proxy
An implementation for
CfnTopicRuleDestinationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnTopicRuleDestinationProps.Builder |
builder() |
default Object |
getHttpUrlProperties()
Properties of the HTTP URL.
|
default String |
getStatus()
- **IN_PROGRESS** - A topic rule destination was created but has not been confirmed.
|
default Object |
getVpcProperties()
Properties of the virtual private cloud (VPC) connection.
|
@Stability(value=Stable) @Nullable default Object getHttpUrlProperties()
@Stability(value=Stable) @Nullable default String getStatus()
You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination . Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.
DISABLED by calling UpdateTopicRuleDestination .ENABLED by calling UpdateTopicRuleDestination .GetTopicRuleDestination for details about the error. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination . Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.@Stability(value=Stable) @Nullable default Object getVpcProperties()
@Stability(value=Stable) static CfnTopicRuleDestinationProps.Builder builder()
Copyright © 2022. All rights reserved.