Module AppStream.AppBlockBuilder

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-appblockbuilder.html

type vpc_config = {
  1. security_group_ids : string list option;
  2. subnet_ids : string list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-appblockbuilder-vpcconfig.html

and tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and access_endpoint = {
  1. endpoint_type : string;
  2. vpce_id : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-appblockbuilder-accessendpoint.html

type properties = {
  1. description : string option;
  2. platform : string;
  3. vpc_config : vpc_config;
  4. app_block_arns : string list option;
  5. enable_default_internet_access : bool option;
  6. display_name : string option;
  7. iam_role_arn : string option;
  8. instance_type : string;
  9. tags : tag list option;
  10. name : string;
  11. access_endpoints : access_endpoint list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-appblockbuilder.html;

val make_properties : ?description:string -> platform:string -> vpc_config:vpc_config -> ?app_block_arns:string list -> ?enable_default_internet_access:bool -> ?display_name:string -> ?iam_role_arn:string -> instance_type:string -> ?tags:tag list -> name:string -> ?access_endpoints:access_endpoint list -> unit -> properties
val make_vpc_config : ?security_group_ids:string list -> ?subnet_ids:string list -> unit -> vpc_config
val make_tag : value:string -> key:string -> unit -> tag
val make_access_endpoint : endpoint_type:string -> vpce_id:string -> unit -> access_endpoint
val yojson_of_vpc_config : vpc_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_access_endpoint : access_endpoint -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. created_time : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string