Module Values.CreateOutpostResolverRequestSource

Creates a RouteĀ 53 Resolver on an Outpost.

Sourcetype nonrec t = {
  1. creatorRequestId : CreatorRequestId.t;
    (*

    A unique string that identifies the request and that allows failed requests to be retried without the risk of running the operation twice. CreatorRequestId can be any unique string, for example, a date/time stamp.

    *)
  2. name : OutpostResolverName.t;
    (*

    A friendly name that lets you easily find a configuration in the Resolver dashboard in the RouteĀ 53 console.

    *)
  3. instanceCount : InstanceCount.t option;
    (*

    Number of Amazon EC2 instances for the Resolver on Outpost. The default and minimal value is 4.

    *)
  4. preferredInstanceType : OutpostInstanceType.t;
    (*

    The Amazon EC2 instance type. If you specify this, you must also specify a value for the OutpostArn.

    *)
  5. outpostArn : OutpostArn.t;
    (*

    The Amazon Resource Name (ARN) of the Outpost. If you specify this, you must also specify a value for the PreferredInstanceType.

    *)
  6. tags : TagList.t option;
    (*

    A string that helps identify the RouteĀ 53 Resolvers on Outpost.

    *)
}
Sourceval context_ : string
Sourceval make : ?instanceCount:??? -> ?tags:??? -> creatorRequestId:CreatorRequestId.t -> name:OutpostResolverName.t -> preferredInstanceType:OutpostInstanceType.t -> outpostArn:OutpostArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of InstanceCount.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of CreatorRequestId.t ]) 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