Module Values.UpdateResourceConfigurationResponseSource

Updates the specified resource configuration.

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

    The ID of the resource configuration.

    *)
  2. name : ResourceConfigurationName.t option;
    (*

    The name of the resource configuration.

    *)
  3. arn : ResourceConfigurationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the resource configuration.

    *)
  4. resourceGatewayId : ResourceGatewayId.t option;
    (*

    The ID of the resource gateway associated with the resource configuration.

    *)
  5. resourceConfigurationGroupId : ResourceConfigurationId.t option;
    (*

    The ID of the group resource configuration.

    *)
  6. type_ : ResourceConfigurationType.t option;
    (*

    The type of resource configuration. SINGLE - A single resource. GROUP - A group of resources. CHILD - A single resource that is part of a group resource configuration. ARN - An Amazon Web Services resource.

    *)
  7. portRanges : PortRangeList.t option;
    (*

    The TCP port ranges that a consumer can use to access a resource configuration. You can separate port ranges with a comma. Example: 1-65535 or 1,2,22-30

    *)
  8. allowAssociationToShareableServiceNetwork : Boolean.t option;
    (*

    Indicates whether to add the resource configuration to service networks that are shared with other accounts.

    *)
  9. protocol : ProtocolType.t option;
    (*

    The TCP protocol accepted by the specified resource configuration.

    *)
  10. status : ResourceConfigurationStatus.t option;
    (*

    The status of the resource configuration.

    *)
  11. resourceConfigurationDefinition : ResourceConfigurationDefinition.t option;
    (*

    The resource configuration.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?resourceGatewayId:??? -> ?resourceConfigurationGroupId:??? -> ?type_:??? -> ?portRanges:??? -> ?allowAssociationToShareableServiceNetwork:??? -> ?protocol:??? -> ?status:??? -> ?resourceConfigurationDefinition:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of PortRange.t ] list | `String of ResourceConfigurationId.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of DomainName.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