Module Values.DescribeVpcConnectionResponseSource

Returns a description of this MSK VPC connection.

Sourcetype nonrec t = {
  1. vpcConnectionArn : string option;
    (*

    The Amazon Resource Name (ARN) that uniquely identifies a MSK VPC connection.

    *)
  2. targetClusterArn : string option;
    (*

    The Amazon Resource Name (ARN) that uniquely identifies an MSK cluster.

    *)
  3. state : VpcConnectionState.t option;
    (*

    The state of VPC connection.

    *)
  4. authentication : string option;
    (*

    The authentication type of VPC connection.

    *)
  5. vpcId : string option;
    (*

    The VPC Id for the VPC connection.

    *)
  6. subnets : string list option;
    (*

    The list of subnets for the VPC connection.

    *)
  7. securityGroups : string list option;
    (*

    The list of security groups for the VPC connection.

    *)
  8. creationTime : string option;
    (*

    The creation time of the VPC connection.

    *)
  9. tags : (string * string) list option;
    (*

    A map of tags for the VPC connection.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ForbiddenException of ForbiddenException.t
  3. | `InternalServerErrorException of InternalServerErrorException.t
  4. | `NotFoundException of NotFoundException.t
  5. | `ServiceUnavailableException of ServiceUnavailableException.t
  6. | `UnauthorizedException of UnauthorizedException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?vpcConnectionArn:??? -> ?targetClusterArn:??? -> ?state:??? -> ?authentication:??? -> ?vpcId:??? -> ?subnets:??? -> ?securityGroups:??? -> ?creationTime:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Timestamp of string ]) 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