Module Redshift.EndpointAccess

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-endpointaccess.html

type vpc_security_group = {
  1. status : string option;
  2. vpc_security_group_id : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-endpointaccess-vpcsecuritygroup.html

and network_interface = {
  1. private_ip_address : string option;
  2. availability_zone : string option;
  3. subnet_id : string option;
  4. network_interface_id : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-endpointaccess-networkinterface.html

and vpc_endpoint = {
  1. vpc_id : string option;
  2. network_interfaces : network_interface list option;
  3. vpc_endpoint_id : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-endpointaccess-vpcendpoint.html

type properties = {
  1. endpoint_name : string;
  2. vpc_security_group_ids : string list;
  3. resource_owner : string option;
  4. subnet_group_name : string;
  5. 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 ]
type attributes = {
  1. ref_ : string;
  2. endpoint_status : string;
  3. address : string;
  4. port : int;
  5. endpoint_create_time : string;
  6. vpc_endpoint__vpc_id : string;
  7. vpc_endpoint__vpc_endpoint_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string