Module Values.CreateFarmRequestSource

Shared displayName + description for Create operations where both are present. displayName is @required here - this mixin is Create-only by design (Update has optional displayName).

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    The unique token which the server uses to recognize retries of the same request.

    *)
  2. displayName : ResourceName.t;
    (*

    The display name of the farm. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  3. description : Description.t option;
    (*

    The description of the farm. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  4. kmsKeyArn : KmsKeyArn.t option;
    (*

    The ARN of the KMS key to use on the farm.

    *)
  5. costScaleFactor : CostScaleFactor.t option;
    (*

    A multiplier applied to the farm's calculated costs for usage data and budget tracking. A value less than 1 represents a discount, a value greater than 1 represents a premium, and a value of 1 represents no adjustment. The default value is 1.

    *)
  6. tags : Tags.t option;
    (*

    The tags to add to your farm. Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?description:??? -> ?kmsKeyArn:??? -> ?costScaleFactor:??? -> ?tags:??? -> displayName:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of CostScaleFactor.t | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of ClientToken.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