Module Values.CreateCollaborationInputSource

Creates a new collaboration.

Sourcetype nonrec t = {
  1. members : MemberList.t;
    (*

    A list of initial members, not including the creator. This list is immutable.

    *)
  2. name : CollaborationName.t;
    (*

    The display name for a collaboration.

    *)
  3. description : CollaborationDescription.t;
    (*

    A description of the collaboration provided by the collaboration owner.

    *)
  4. creatorMemberAbilities : MemberAbilities.t;
    (*

    The abilities granted to the collaboration creator.

    *)
  5. creatorMLMemberAbilities : MLMemberAbilities.t option;
    (*

    The ML abilities granted to the collaboration creator.

    *)
  6. creatorDisplayName : DisplayName.t;
    (*

    The display name of the collaboration creator.

    *)
  7. dataEncryptionMetadata : DataEncryptionMetadata.t option;
    (*

    The settings for client-side encryption with Cryptographic Computing for Clean Rooms.

    *)
  8. queryLogStatus : CollaborationQueryLogStatus.t;
    (*

    An indicator as to whether query logging has been enabled or disabled for the collaboration. When ENABLED, Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is DISABLED.

    *)
  9. jobLogStatus : CollaborationJobLogStatus.t option;
    (*

    Specifies whether job logs are enabled for this collaboration. When ENABLED, Clean Rooms logs details about jobs run within this collaboration; those logs can be viewed in Amazon CloudWatch Logs. The default value is DISABLED.

    *)
  10. tags : TagMap.t option;
    (*

    An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.

    *)
  11. creatorPaymentConfiguration : PaymentConfiguration.t option;
    (*

    The collaboration creator's payment responsibilities set by the collaboration creator. If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the member who can query is the default payer.

    *)
  12. analyticsEngine : AnalyticsEngine.t option;
    (*

    The analytics engine. After July 16, 2025, the CLEAN_ROOMS_SQL parameter will no longer be available.

    *)
  13. autoApprovedChangeRequestTypes : AutoApprovedChangeTypeList.t option;
    (*

    The types of change requests that are automatically approved for this collaboration.

    *)
  14. allowedResultRegions : AllowedResultRegions.t option;
    (*

    The Amazon Web Services Regions where collaboration query results can be stored. When specified, results can only be written to these Regions. This parameter enables you to meet your compliance and data governance requirements, and implement regional data governance policies.

    *)
  15. isMetricsEnabled : Boolean.t option;
    (*

    An indicator as to whether metrics have been enabled or disabled for the collaboration. When true, collaboration members can opt in to Amazon CloudWatch metrics for their membership queries. The default value is false.

    *)
}
Sourceval context_ : string
Sourceval make : ?creatorMLMemberAbilities:??? -> ?dataEncryptionMetadata:??? -> ?jobLogStatus:??? -> ?tags:??? -> ?creatorPaymentConfiguration:??? -> ?analyticsEngine:??? -> ?autoApprovedChangeRequestTypes:??? -> ?allowedResultRegions:??? -> ?isMetricsEnabled:??? -> members:MemberList.t -> name:CollaborationName.t -> description:CollaborationDescription.t -> creatorMemberAbilities:MemberAbilities.t -> creatorDisplayName:DisplayName.t -> queryLogStatus:CollaborationQueryLogStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `List of [> `Enum of string ] list | `String of AccountId.t | `Structure of (string * [> `List of [> `Enum of string ] list | `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Boolean of Boolean.t ]) list ]) list ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of CollaborationName.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Enum of string ] list | `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Boolean of Boolean.t ]) list ]) 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