Class: Aws::ConfigService::Types::DeleteDeliveryChannelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DeleteDeliveryChannelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass DeleteDeliveryChannelRequest data as a hash:
{
delivery_channel_name: "ChannelName", # required
}
The input for the DeleteDeliveryChannel action. The action accepts the following data in JSON format.
Instance Attribute Summary collapse
-
#delivery_channel_name ⇒ String
The name of the delivery channel to delete.
Instance Attribute Details
#delivery_channel_name ⇒ String
The name of the delivery channel to delete.
784 785 786 787 |
# File 'lib/aws-sdk-configservice/types.rb', line 784 class DeleteDeliveryChannelRequest < Struct.new( :delivery_channel_name) include Aws::Structure end |