Redshift.EndpointAccess
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-endpointaccess.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-endpointaccess-vpcsecuritygroup.html
and network_interface = {
private_ip_address : string option;
availability_zone : string option;
subnet_id : string option;
network_interface_id : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-endpointaccess-networkinterface.html
and vpc_endpoint = {
vpc_id : string option;
network_interfaces : network_interface list option;
vpc_endpoint_id : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-endpointaccess-vpcendpoint.html
type properties = {
endpoint_name : string;
vpc_security_group_ids : string list;
resource_owner : string option;
subnet_group_name : string;
cluster_identifier : string;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-endpointaccess.html;
val make_properties :
endpoint_name:string ->
vpc_security_group_ids:string list ->
?resource_owner:string ->
subnet_group_name:string ->
cluster_identifier:string ->
unit ->
properties
val make_vpc_security_group :
?status:string ->
?vpc_security_group_id:string ->
unit ->
vpc_security_group
val make_network_interface :
?private_ip_address:string ->
?availability_zone:string ->
?subnet_id:string ->
?network_interface_id:string ->
unit ->
network_interface
val make_vpc_endpoint :
?vpc_id:string ->
?network_interfaces:network_interface list ->
?vpc_endpoint_id:string ->
unit ->
vpc_endpoint
val yojson_of_vpc_security_group :
vpc_security_group ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_network_interface : network_interface -> Yojson.Safe.t
val yojson_of_vpc_endpoint :
vpc_endpoint ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes