Module Values.DestinationPropertiesSource

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.

Sourcetype nonrec t = {
  1. destinationArn : String_.t option;
    (*

    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/

    *)
  2. kmsKeyArn : String_.t option;
    (*

    The ARN of the KMS key to use for encryption.

    *)
}
Sourceval make : ?destinationArn:??? -> ?kmsKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t