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
Note:
When making an API call, you may pass Destination data as a hash:
{
bucket_name: "String", # required
key_prefix: "String",
kms_key_arn: "String", # required
}
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.
1819 1820 1821 1822 1823 1824 1825 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 1819 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.
1819 1820 1821 1822 1823 1824 1825 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 1819 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.
1819 1820 1821 1822 1823 1824 1825 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 1819 class Destination < Struct.new( :bucket_name, :key_prefix, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |