AWSIoTTopicRuleDestination

Objective-C

@interface AWSIoTTopicRuleDestination

Swift

class AWSIoTTopicRuleDestination

A topic rule destination.

  • arn

    The topic rule destination URL.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable arn;

    Swift

    var arn: String? { get set }
  • The date and time when the topic rule destination was created.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable createdAt;

    Swift

    var createdAt: Date? { get set }
  • Properties of the HTTP URL.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSIoTHttpUrlDestinationProperties *_Nullable httpUrlProperties;

    Swift

    var httpUrlProperties: AWSIoTHttpUrlDestinationProperties? { get set }
  • The date and time when the topic rule destination was last updated.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable lastUpdatedAt;

    Swift

    var lastUpdatedAt: Date? { get set }
  • The status of the topic rule destination. Valid values are:

    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 DISABLED by calling UpdateTopicRuleDestination.

    DISABLED

    Confirmation was completed, and traffic to this destination is not allowed. You can set status to ENABLED by calling UpdateTopicRuleDestination.

    ERROR

    Confirmation could not be completed, for example if the confirmation timed out. You can call 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.

    Declaration

    Objective-C

    @property (nonatomic) AWSIoTTopicRuleDestinationStatus status;

    Swift

    var status: AWSIoTTopicRuleDestinationStatus { get set }
  • Additional details or reason why the topic rule destination is in the current status.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable statusReason;

    Swift

    var statusReason: String? { get set }
  • Properties of the virtual private cloud (VPC) connection.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSIoTVpcDestinationProperties *_Nullable vpcProperties;

    Swift

    var vpcProperties: AWSIoTVpcDestinationProperties? { get set }