Class: Aws::Firehose::Types::StopDeliveryStreamEncryptionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::StopDeliveryStreamEncryptionInput
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
Note:
When making an API call, you may pass StopDeliveryStreamEncryptionInput data as a hash:
{
delivery_stream_name: "DeliveryStreamName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delivery_stream_name ⇒ String
The name of the delivery stream for which you want to disable server-side encryption (SSE).
Instance Attribute Details
#delivery_stream_name ⇒ String
The name of the delivery stream for which you want to disable server-side encryption (SSE).
4935 4936 4937 4938 4939 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 4935 class StopDeliveryStreamEncryptionInput < Struct.new( :delivery_stream_name) SENSITIVE = [] include Aws::Structure end |