Class: Aws::Inspector2::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::Destination
- Defined in:
- gems/aws-sdk-inspector2/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 of the KMS key used to export findings.
-
#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.
1292 1293 1294 1295 1296 1297 1298 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 1292 class Destination < Struct.new( :bucket_name, :key_prefix, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#key_prefix ⇒ String
The prefix of the KMS key used to export findings.
1292 1293 1294 1295 1296 1297 1298 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 1292 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.
1292 1293 1294 1295 1296 1297 1298 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 1292 class Destination < Struct.new( :bucket_name, :key_prefix, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |