Module Values.UpdateAppBlockBuilderRequestSource

Updates an app block builder. If the app block builder is in the STARTING or STOPPING state, you can't update it. If the app block builder is in the RUNNING state, you can only update the DisplayName and Description. If the app block builder is in the STOPPED state, you can update any attribute except the Name.

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. platform : PlatformType.t option;
    (*

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

    *)
  5. instanceType : String_.t option;
    (*

    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

    *)
  6. vpcConfig : VpcConfig.t option;
    (*

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

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

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

    *)
  8. 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.

    *)
  9. 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.

    *)
  10. attributesToDelete : AppBlockBuilderAttributes.t option;
    (*

    The attributes to delete from the app block builder.

    *)
  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:??? -> ?platform:??? -> ?instanceType:??? -> ?vpcConfig:??? -> ?enableDefaultInternetAccess:??? -> ?iamRoleArn:??? -> ?accessEndpoints:??? -> ?attributesToDelete:??? -> ?disableIMDSV1:??? -> name:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] 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