Class: Aws::GuardDuty::Types::DestinationProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::DestinationProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-guardduty/types.rb
Overview
Contains the Amazon Resource Name (ARN) of the resource to publish to, such as an S3 bucket, and the ARN of the KMS key to use to encrypt published findings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_arn ⇒ String
The ARN of the resource to publish to.
-
#kms_key_arn ⇒ String
The ARN of the KMS key to use for encryption.
Instance Attribute Details
#destination_arn ⇒ String
The ARN of the resource to publish to.
To specify an S3 bucket folder use the following format: ‘arn:aws:s3:::DOC-EXAMPLE-BUCKET/myFolder/`
4321 4322 4323 4324 4325 4326 |
# File 'lib/aws-sdk-guardduty/types.rb', line 4321 class DestinationProperties < Struct.new( :destination_arn, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#kms_key_arn ⇒ String
The ARN of the KMS key to use for encryption.
4321 4322 4323 4324 4325 4326 |
# File 'lib/aws-sdk-guardduty/types.rb', line 4321 class DestinationProperties < Struct.new( :destination_arn, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |