Class: Aws::GuardDuty::Types::DestinationProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::DestinationProperties
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Note:
When making an API call, you may pass DestinationProperties data as a hash:
{
destination_arn: "String",
kms_key_arn: "String",
}
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.
1587 1588 1589 1590 1591 1592 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 1587 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.
1587 1588 1589 1590 1591 1592 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 1587 class DestinationProperties < Struct.new( :destination_arn, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |