Module Values.UpdateResourceConfigurationRequestSource

Updates the specified resource configuration.

Sourcetype nonrec t = {
  1. resourceConfigurationIdentifier : ResourceConfigurationIdentifier.t;
    (*

    The ID of the resource configuration.

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

    Identifies the resource configuration in one of the following ways: Amazon Resource Name (ARN) - Supported resource-types that are provisioned by Amazon Web Services services, such as RDS databases, can be identified by their ARN. Domain name - Any domain name that is publicly resolvable. IP address - For IPv4 and IPv6, only IP addresses in the VPC are supported.

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

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

    *)
  4. 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

    *)
}
Sourceval context_ : string
Sourceval make : ?resourceConfigurationDefinition:??? -> ?allowAssociationToShareableServiceNetwork:??? -> ?portRanges:??? -> resourceConfigurationIdentifier:ResourceConfigurationIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of PortRange.t ] list | `String of ResourceConfigurationIdentifier.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