Module Values.ResourceShareSource

Describes a resource share in RAM.

Sourcetype nonrec t = {
  1. resourceShareArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the resource share

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

    The name of the resource share.

    *)
  3. owningAccountId : String_.t option;
    (*

    The ID of the Amazon Web Services account that owns the resource share.

    *)
  4. allowExternalPrincipals : Boolean.t option;
    (*

    Indicates whether principals outside your organization in Organizations can be associated with a resource share. True – the resource share can be shared with any Amazon Web Services account. False – the resource share can be shared with only accounts in the same organization as the account that owns the resource share.

    *)
  5. status : ResourceShareStatus.t option;
    (*

    The current status of the resource share.

    *)
  6. statusMessage : String_.t option;
    (*

    A message about the status of the resource share.

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

    The tag key and value pairs attached to the resource share.

    *)
  8. creationTime : DateTime.t option;
    (*

    The date and time when the resource share was created.

    *)
  9. lastUpdatedTime : DateTime.t option;
    (*

    The date and time when the resource share was last updated.

    *)
  10. featureSet : ResourceShareFeatureSet.t option;
    (*

    Indicates what features are available for this resource share. This parameter can have one of the following values: STANDARD – A resource share that supports all functionality. These resource shares are visible to all principals you share the resource share with. You can modify these resource shares in RAM using the console or APIs. This resource share might have been created by RAM, or it might have been CREATED_FROM_POLICY and then promoted. CREATED_FROM_POLICY – The customer manually shared a resource by attaching a resource-based policy. That policy did not match any existing managed permissions, so RAM created this customer managed permission automatically on the customer's behalf based on the attached policy document. This type of resource share is visible only to the Amazon Web Services account that created it. You can't modify it in RAM unless you promote it. For more information, see PromoteResourceShareCreatedFromPolicy. PROMOTING_TO_STANDARD – This resource share was originally CREATED_FROM_POLICY, but the customer ran the PromoteResourceShareCreatedFromPolicy and that operation is still in progress. This value changes to STANDARD when complete.

    *)
  11. resourceShareConfiguration : ResourceShareConfiguration.t option;
    (*

    The configuration of the resource share

    *)
}
Sourceval make : ?resourceShareArn:??? -> ?name:??? -> ?owningAccountId:??? -> ?allowExternalPrincipals:??? -> ?status:??? -> ?statusMessage:??? -> ?tags:??? -> ?creationTime:??? -> ?lastUpdatedTime:??? -> ?featureSet:??? -> ?resourceShareConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t ]) list | `Timestamp of DateTime.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