Module Values_1.TrafficDistributionGroupSource

Information about a traffic distribution group.

Sourcetype nonrec t = {
  1. id : Values_0.TrafficDistributionGroupId.t option;
    (*

    The identifier of the traffic distribution group. This can be the ID or the ARN if the API is being called in the Region where the traffic distribution group was created. The ARN must be provided if the call is from the replicated Region.

    *)
  2. arn : Values_0.TrafficDistributionGroupArn.t option;
    (*

    The Amazon Resource Name (ARN) of the traffic distribution group.

    *)
  3. name : Values_0.Name128.t option;
    (*

    The name of the traffic distribution group.

    *)
  4. description : Values_0.Description250.t option;
    (*

    The description of the traffic distribution group.

    *)
  5. instanceArn : InstanceArn.t option;
    (*

    The Amazon Resource Name (ARN).

    *)
  6. status : TrafficDistributionGroupStatus.t option;
    (*

    The status of the traffic distribution group. CREATION_IN_PROGRESS means the previous CreateTrafficDistributionGroup operation is still in progress and has not yet completed. ACTIVE means the previous CreateTrafficDistributionGroup operation has succeeded. CREATION_FAILED indicates that the previous CreateTrafficDistributionGroup operation has failed. PENDING_DELETION means the previous DeleteTrafficDistributionGroup operation is still in progress and has not yet completed. DELETION_FAILED means the previous DeleteTrafficDistributionGroup operation has failed. UPDATE_IN_PROGRESS means the previous UpdateTrafficDistribution operation is still in progress and has not yet completed.

    *)
  7. tags : Values_0.TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

    *)
  8. isDefault : Values_0.Boolean.t option;
    (*

    Whether this is the default traffic distribution group created during instance replication. The default traffic distribution group cannot be deleted by the DeleteTrafficDistributionGroup API. The default traffic distribution group is deleted as part of the process for deleting a replica. The SignInConfig distribution is available only on a default TrafficDistributionGroup (see the IsDefault parameter in the TrafficDistributionGroup data type). If you call UpdateTrafficDistribution with a modified SignInConfig and a non-default TrafficDistributionGroup, an InvalidRequestException is returned.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?description:??? -> ?instanceArn:??? -> ?status:??? -> ?tags:??? -> ?isDefault:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `Map of ([> `String of string ] * [> `String of string ]) list | `String of Values_0.TrafficDistributionGroupId.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