Module Values.CustomerAgreementSummarySource

Summary for customer-agreement resource.

Sourcetype nonrec t = {
  1. name : LongStringAttribute.t option;
    (*

    Name of the customer-agreement resource.

    *)
  2. arn : LongStringAttribute.t option;
    (*

    ARN of the customer-agreement resource.

    *)
  3. id : CustomerAgreementIdAttribute.t option;
    (*

    Identifier of the customer-agreement resource.

    *)
  4. agreementArn : LongStringAttribute.t option;
    (*

    ARN of the agreement resource the customer-agreement resource represents.

    *)
  5. awsAccountId : ShortStringAttribute.t option;
    (*

    AWS account Id that owns the resource.

    *)
  6. organizationArn : LongStringAttribute.t option;
    (*

    ARN of the organization that owns the resource.

    *)
  7. effectiveStart : TimestampAttribute.t option;
    (*

    Timestamp indicating when the agreement became effective.

    *)
  8. effectiveEnd : TimestampAttribute.t option;
    (*

    Timestamp indicating when the agreement was terminated.

    *)
  9. state : CustomerAgreementState.t option;
    (*

    State of the resource.

    *)
  10. description : LongStringAttribute.t option;
    (*

    Description of the resource.

    *)
  11. acceptanceTerms : AgreementTerms.t option;
    (*

    Terms required to accept the agreement resource.

    *)
  12. terminateTerms : AgreementTerms.t option;
    (*

    Terms required to terminate the customer-agreement resource.

    *)
  13. type_ : AgreementType.t option;
    (*

    Type of the customer-agreement resource.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?id:??? -> ?agreementArn:??? -> ?awsAccountId:??? -> ?organizationArn:??? -> ?effectiveStart:??? -> ?effectiveEnd:??? -> ?state:??? -> ?description:??? -> ?acceptanceTerms:??? -> ?terminateTerms:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of LongStringAttribute.t ] list | `String of LongStringAttribute.t | `Timestamp of TimestampAttribute.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