Class: Aws::Inspector2::Types::Destination

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bucket_nameString

The name of the Amazon S3 bucket to export findings to.

Returns:

  • (String)


2567
2568
2569
2570
2571
2572
2573
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2567

class Destination < Struct.new(
  :bucket_name,
  :key_prefix,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#key_prefixString

The prefix that the findings will be written under.

Returns:

  • (String)


2567
2568
2569
2570
2571
2572
2573
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2567

class Destination < Struct.new(
  :bucket_name,
  :key_prefix,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#kms_key_arnString

The ARN of the KMS key used to encrypt data when exporting findings.

Returns:

  • (String)


2567
2568
2569
2570
2571
2572
2573
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2567

class Destination < Struct.new(
  :bucket_name,
  :key_prefix,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end