Module Values.CreateAppBlockBuilderRequestSource

Creates an app block builder.

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

    The unique name for the app block builder.

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

    The description of the app block builder.

    *)
  3. displayName : DisplayName.t option;
    (*

    The display name of the app block builder.

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

    The tags to associate with the app block builder. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. If you do not specify a value, the value is set to an empty string. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: _ . : / = + \ - @ For more information, see Tagging Your Resources in the Amazon WorkSpaces Applications Administration Guide.

    *)
  5. platform : AppBlockBuilderPlatformType.t;
    (*

    The platform of the app block builder. WINDOWS_SERVER_2019 is the only valid value.

    *)
  6. instanceType : String_.t;
    (*

    The instance type to use when launching the app block builder. The following instance types are available: stream.standard.small stream.standard.medium stream.standard.large stream.standard.xlarge stream.standard.2xlarge

    *)
  7. vpcConfig : VpcConfig.t;
    (*

    The VPC configuration for the app block builder. App block builders require that you specify at least two subnets in different availability zones.

    *)
  8. enableDefaultInternetAccess : BooleanObject.t option;
    (*

    Enables or disables default internet access for the app block builder.

    *)
  9. iamRoleArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role to apply to the app block builder. To assume a role, the app block builder calls the AWS Security Token Service (STS) AssumeRole API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. WorkSpaces Applications retrieves the temporary credentials and creates the appstream_machine_role credential profile on the instance. For more information, see Using an IAM Role to Grant Permissions to Applications and Scripts Running on WorkSpaces Applications Streaming Instances in the Amazon WorkSpaces Applications Administration Guide.

    *)
  10. accessEndpoints : AccessEndpointList.t option;
    (*

    The list of interface VPC endpoint (interface endpoint) objects. Administrators can connect to the app block builder only through the specified endpoints.

    *)
  11. disableIMDSV1 : BooleanObject.t option;
    (*

    Set to true to disable Instance Metadata Service Version 1 (IMDSv1) and enforce IMDSv2. Set to false to enable both IMDSv1 and IMDSv2.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?displayName:??? -> ?tags:??? -> ?enableDefaultInternetAccess:??? -> ?iamRoleArn:??? -> ?accessEndpoints:??? -> ?disableIMDSV1:??? -> name:Name.t -> platform:AppBlockBuilderPlatformType.t -> instanceType:String_.t -> vpcConfig:VpcConfig.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.t | `Structure of (string * [> `List of [> `String of String_.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