Class: Aws::Firehose::Types::StartDeliveryStreamEncryptionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::StartDeliveryStreamEncryptionInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-firehose/types.rb
Overview
Note:
When making an API call, you may pass StartDeliveryStreamEncryptionInput data as a hash:
{
delivery_stream_name: "DeliveryStreamName", # required
delivery_stream_encryption_configuration_input: {
key_arn: "AWSKMSKeyARN",
key_type: "AWS_OWNED_CMK", # required, accepts AWS_OWNED_CMK, CUSTOMER_MANAGED_CMK
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delivery_stream_encryption_configuration_input ⇒ Types::DeliveryStreamEncryptionConfigurationInput
Used to specify the type and Amazon Resource Name (ARN) of the KMS key needed for Server-Side Encryption (SSE).
-
#delivery_stream_name ⇒ String
The name of the delivery stream for which you want to enable server-side encryption (SSE).
Instance Attribute Details
#delivery_stream_encryption_configuration_input ⇒ Types::DeliveryStreamEncryptionConfigurationInput
Used to specify the type and Amazon Resource Name (ARN) of the KMS key needed for Server-Side Encryption (SSE).
5469 5470 5471 5472 5473 5474 |
# File 'lib/aws-sdk-firehose/types.rb', line 5469 class StartDeliveryStreamEncryptionInput < Struct.new( :delivery_stream_name, :delivery_stream_encryption_configuration_input) SENSITIVE = [] include Aws::Structure end |
#delivery_stream_name ⇒ String
The name of the delivery stream for which you want to enable server-side encryption (SSE).
5469 5470 5471 5472 5473 5474 |
# File 'lib/aws-sdk-firehose/types.rb', line 5469 class StartDeliveryStreamEncryptionInput < Struct.new( :delivery_stream_name, :delivery_stream_encryption_configuration_input) SENSITIVE = [] include Aws::Structure end |