Module Values.CreateSubscriptionTargetInputSource

Creates a subscription target in Amazon DataZone.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The ID of the Amazon DataZone domain in which subscription target is created.

    *)
  2. environmentIdentifier : EnvironmentId.t;
    (*

    The ID of the environment in which subscription target is created.

    *)
  3. name : SubscriptionTargetName.t;
    (*

    The name of the subscription target.

    *)
  4. type_ : String_.t;
    (*

    The type of the subscription target.

    *)
  5. subscriptionTargetConfig : SubscriptionTargetForms.t;
    (*

    The configuration of the subscription target.

    *)
  6. authorizedPrincipals : AuthorizedPrincipalIdentifiers.t;
    (*

    The authorized principals of the subscription target.

    *)
  7. manageAccessRole : IamRoleArn.t;
    (*

    The manage access role that is used to create the subscription target.

    *)
  8. applicableAssetTypes : ApplicableAssetTypes.t;
    (*

    The asset types that can be included in the subscription target.

    *)
  9. provider : String_.t option;
    (*

    The provider of the subscription target.

    *)
  10. clientToken : String_.t option;
    (*

    A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

    *)
  11. subscriptionGrantCreationMode : SubscriptionGrantCreationMode.t option;
    (*

    Determines the subscription grant creation mode for this target, defining if grants are auto-created upon subscription approval or managed manually.

    *)
}
Sourceval context_ : string
Sourceval make : ?provider:??? -> ?clientToken:??? -> ?subscriptionGrantCreationMode:??? -> domainIdentifier:DomainId.t -> environmentIdentifier:EnvironmentId.t -> name:SubscriptionTargetName.t -> type_:String_.t -> subscriptionTargetConfig:SubscriptionTargetForms.t -> authorizedPrincipals:AuthorizedPrincipalIdentifiers.t -> manageAccessRole:IamRoleArn.t -> applicableAssetTypes:ApplicableAssetTypes.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AuthorizedPrincipalIdentifier.t | `Structure of (string * [> `String of FormName.t ]) list ] list | `String of DomainId.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