Module Values.CreateSegmentSnapshotRequestSource

Triggers a job to export a segment to a specified destination.

Sourcetype nonrec t = {
  1. domainName : Name.t;
    (*

    The unique name of the domain.

    *)
  2. segmentDefinitionName : Name.t;
    (*

    The name of the segment definition used in this snapshot request.

    *)
  3. dataFormat : DataFormat.t;
    (*

    The format in which the segment will be exported.

    *)
  4. encryptionKey : EncryptionKey.t option;
    (*

    The Amazon Resource Name (ARN) of the KMS key used to encrypt the exported segment.

    *)
  5. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role that allows Customer Profiles service principal to assume the role for conducting KMS and S3 operations.

    *)
  6. destinationUri : String1To255.t option;
    (*

    The destination to which the segment will be exported. This field must be provided if the request is not submitted from the Amazon Connect Admin Website.

    *)
}
Sourceval context_ : string
Sourceval make : ?encryptionKey:??? -> ?roleArn:??? -> ?destinationUri:??? -> domainName:Name.t -> segmentDefinitionName:Name.t -> dataFormat:DataFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.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