Module Values.AppBlockBuilderSource

Describes an app block builder.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The ARN of the app block builder.

    *)
  2. name : String_.t option;
    (*

    The name of the app block builder.

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

    The display name of the app block builder.

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

    The description of the app block builder.

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

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

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

    The instance type of the app block builder.

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

    Indicates whether default internet access is enabled for the app block builder.

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

    The ARN of the IAM role that is applied to the app block builder.

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

    The VPC configuration for the app block builder.

    *)
  10. state : AppBlockBuilderState.t option;
    (*

    The state of the app block builder.

    *)
  11. createdTime : Timestamp.t option;
    (*

    The creation time of the app block builder.

    *)
  12. appBlockBuilderErrors : ResourceErrors.t option;
    (*

    The app block builder errors.

    *)
  13. stateChangeReason : AppBlockBuilderStateChangeReason.t option;
    (*

    The state change reason.

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

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

    Indicates whether Instance Metadata Service Version 1 (IMDSv1) is disabled for the app block builder.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?displayName:??? -> ?description:??? -> ?platform:??? -> ?instanceType:??? -> ?enableDefaultInternetAccess:??? -> ?iamRoleArn:??? -> ?vpcConfig:??? -> ?state:??? -> ?createdTime:??? -> ?appBlockBuilderErrors:??? -> ?stateChangeReason:??? -> ?accessEndpoints:??? -> ?disableIMDSV1:??? -> 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 | `Timestamp of Timestamp.t ]) list ] list | `String of Arn.t | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t ]) list | `Timestamp of Timestamp.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