Class: Aws::IoT::Types::TopicRuleDestinationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::TopicRuleDestinationConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass TopicRuleDestinationConfiguration data as a hash:
{
http_url_configuration: {
confirmation_url: "Url", # required
},
vpc_configuration: {
subnet_ids: ["SubnetId"], # required
security_groups: ["SecurityGroupId"],
vpc_id: "VpcId", # required
role_arn: "AwsArn", # required
},
}
Configuration of the topic rule destination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#http_url_configuration ⇒ Types::HttpUrlDestinationConfiguration
Configuration of the HTTP URL.
-
#vpc_configuration ⇒ Types::VpcDestinationConfiguration
Configuration of the virtual private cloud (VPC) connection.
Instance Attribute Details
#http_url_configuration ⇒ Types::HttpUrlDestinationConfiguration
Configuration of the HTTP URL.
18148 18149 18150 18151 18152 18153 |
# File 'lib/aws-sdk-iot/types.rb', line 18148 class TopicRuleDestinationConfiguration < Struct.new( :http_url_configuration, :vpc_configuration) SENSITIVE = [] include Aws::Structure end |
#vpc_configuration ⇒ Types::VpcDestinationConfiguration
Configuration of the virtual private cloud (VPC) connection.
18148 18149 18150 18151 18152 18153 |
# File 'lib/aws-sdk-iot/types.rb', line 18148 class TopicRuleDestinationConfiguration < Struct.new( :http_url_configuration, :vpc_configuration) SENSITIVE = [] include Aws::Structure end |