Class: Aws::Inspector2::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::Destination
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-inspector2/types.rb
Overview
Contains details of the Amazon S3 bucket and KMS key used to export findings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The name of the Amazon S3 bucket to export findings to.
-
#key_prefix ⇒ String
The prefix that the findings will be written under.
-
#kms_key_arn ⇒ String
The ARN of the KMS key used to encrypt data when exporting findings.
Instance Attribute Details
#bucket_name ⇒ String
The name of the Amazon S3 bucket to export findings to.
2588 2589 2590 2591 2592 2593 2594 |
# File 'lib/aws-sdk-inspector2/types.rb', line 2588 class Destination < Struct.new( :bucket_name, :key_prefix, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#key_prefix ⇒ String
The prefix that the findings will be written under.
2588 2589 2590 2591 2592 2593 2594 |
# File 'lib/aws-sdk-inspector2/types.rb', line 2588 class Destination < Struct.new( :bucket_name, :key_prefix, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#kms_key_arn ⇒ String
The ARN of the KMS key used to encrypt data when exporting findings.
2588 2589 2590 2591 2592 2593 2594 |
# File 'lib/aws-sdk-inspector2/types.rb', line 2588 class Destination < Struct.new( :bucket_name, :key_prefix, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |