Module Values.DescribeActivityOutputSource

Describes an activity. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.

Sourcetype nonrec t = {
  1. activityArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) that identifies the activity.

    *)
  2. name : Name.t option;
    (*

    The name of the activity. A name must not contain: white space brackets < > { } [ ] wildcard characters ? * special characters " # % \ ^ | ~ ` $ & , ; : / control characters (U+0000-001F, U+007F-009F, U+FFFE-FFFF) surrogates (U+D800-DFFF) invalid characters ( U+10FFFF) To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.

    *)
  3. creationDate : Timestamp.t option;
    (*

    The date the activity is created.

    *)
  4. encryptionConfiguration : EncryptionConfiguration.t option;
    (*

    Settings for configured server-side encryption.

    *)
}
Sourcetype nonrec error = [
  1. | `ActivityDoesNotExist of ActivityDoesNotExist.t
  2. | `InvalidArn of InvalidArn.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?activityArn:??? -> ?name:??? -> ?creationDate:??? -> ?encryptionConfiguration:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ActivityDoesNotExist of ActivityDoesNotExist.t | `InvalidArn of InvalidArn.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ActivityDoesNotExist of ActivityDoesNotExist.t | `InvalidArn of InvalidArn.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.t | `Structure of (string * [> `Enum of string | `Integer of KmsDataKeyReusePeriodSeconds.t | `String of KmsKeyId.t ]) list | `Timestamp of Timestamp.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