Module Values.CreateConnectorV2RequestSource

Grants permission to create a connectorV2 based on input parameters.

Sourcetype nonrec t = {
  1. name : NonEmptyString.t;
    (*

    The unique name of the connectorV2.

    *)
  2. description : NonEmptyString.t option;
    (*

    The description of the connectorV2.

    *)
  3. provider : ProviderConfiguration.t;
    (*

    The third-party provider’s service configuration.

    *)
  4. kmsKeyArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of KMS key used to encrypt secrets for the connectorV2.

    *)
  5. tags : TagMap.t option;
    (*

    The tags to add to the connectorV2 when you create.

    *)
  6. clientToken : ClientToken.t option;
    (*

    A unique identifier used to ensure idempotency.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?kmsKeyArn:??? -> ?tags:??? -> ?clientToken:??? -> name:NonEmptyString.t -> provider:ProviderConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of NonEmptyString.t | `Structure of (string * [> `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ]) 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