Values.CreateFarmRequestSourceShared displayName + description for Create operations where both are present. displayName is @required here - this mixin is Create-only by design (Update has optional displayName).
type nonrec t = {clientToken : ClientToken.t option;The unique token which the server uses to recognize retries of the same request.
*)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.
*)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.
*)kmsKeyArn : KmsKeyArn.t option;The ARN of the KMS key to use on the farm.
*)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.
*)}val make :
?clientToken:??? ->
?description:??? ->
?kmsKeyArn:??? ->
?costScaleFactor:??? ->
?tags:??? ->
displayName:ResourceName.t ->
unit ->
tval 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 ]