Module Values.CreateAgentRequestSource

CreateAgentRequest

Sourcetype nonrec t = {
  1. activationKey : ActivationKey.t;
    (*

    Specifies your DataSync agent's activation key. If you don't have an activation key, see Activating your agent.

    *)
  2. agentName : TagValue.t option;
    (*

    Specifies a name for your agent. We recommend specifying a name that you can remember.

    *)
  3. tags : InputTagList.t option;
    (*

    Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources. We recommend creating at least one tag for your agent.

    *)
  4. vpcEndpointId : VpcEndpointId.t option;
    (*

    Specifies the ID of the VPC service endpoint that you're using. For example, a VPC endpoint ID looks like vpce-01234d5aff67890e1. The VPC service endpoint you use must include the DataSync service name (for example, com.amazonaws.us-east-2.datasync).

    *)
  5. subnetArns : PLSubnetArnList.t option;
    (*

    Specifies the ARN of the subnet where your VPC service endpoint is located. You can only specify one ARN.

    *)
  6. securityGroupArns : PLSecurityGroupArnList.t option;
    (*

    Specifies the Amazon Resource Name (ARN) of the security group that allows traffic between your agent and VPC service endpoint. You can only specify one ARN.

    *)
}
Sourceval context_ : string
Sourceval make : ?agentName:??? -> ?tags:??? -> ?vpcEndpointId:??? -> ?subnetArns:??? -> ?securityGroupArns:??? -> activationKey:ActivationKey.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Ec2SubnetArn.t | `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ActivationKey.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