Module Values.CreateSpaceInputSource

Creates an AWS re:Post Private private re:Post.

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

    The name for the private re:Post. This must be unique in your account.

    *)
  2. subdomain : SpaceSubdomain.t;
    (*

    The subdomain that you use to access your AWS re:Post Private private re:Post. All custom subdomains must be approved by AWS before use. In addition to your custom subdomain, all private re:Posts are issued an AWS generated subdomain for immediate use.

    *)
  3. tier : TierLevel.t;
    (*

    The pricing tier for the private re:Post.

    *)
  4. description : SpaceDescription.t option;
    (*

    A description for the private re:Post. This is used only to help you identify this private re:Post.

    *)
  5. userKMSKey : KMSKey.t option;
    (*

    The AWS KMS key ARN that’s used for the AWS KMS encryption. If you don't provide a key, your data is encrypted by default with a key that AWS owns and manages for you.

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

    The list of tags associated with the private re:Post.

    *)
  7. roleArn : Arn.t option;
    (*

    The IAM role that grants permissions to the private re:Post to convert unanswered questions into AWS support tickets.

    *)
  8. supportedEmailDomains : SupportedEmailDomainsParameters.t option;
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?userKMSKey:??? -> ?tags:??? -> ?roleArn:??? -> ?supportedEmailDomains:??? -> name:SpaceName.t -> subdomain:SpaceSubdomain.t -> tier:TierLevel.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of SpaceName.t | `Structure of (string * [> `Enum of string | `List of [> `String of EmailDomain.t ] list ]) list ]) 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