Module Values.SubscriptionTargetSummarySource

The details of the subscription target.

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

    The identifier of the subscription target.

    *)
  2. authorizedPrincipals : AuthorizedPrincipalIdentifiers.t option;
    (*

    The authorized principals included in the subscription target.

    *)
  3. domainId : DomainId.t option;
    (*

    The identifier of the Amazon DataZone domain in which the subscription target exists.

    *)
  4. projectId : ProjectId.t option;
    (*

    The identifier of the project specified in the subscription target.

    *)
  5. environmentId : EnvironmentId.t option;
    (*

    The identifier of the environment of the subscription target.

    *)
  6. name : SubscriptionTargetName.t option;
    (*

    The name of the subscription target.

    *)
  7. type_ : String_.t option;
    (*

    The type of the subscription target.

    *)
  8. createdBy : CreatedBy.t option;
    (*

    The Amazon DataZone user who created the subscription target.

    *)
  9. updatedBy : UpdatedBy.t option;
    (*

    The Amazon DataZone user who updated the subscription target.

    *)
  10. createdAt : CreatedAt.t option;
    (*

    The timestamp of when the subscription target was created.

    *)
  11. updatedAt : UpdatedAt.t option;
    (*

    The timestamp of when the subscription target was updated.

    *)
  12. manageAccessRole : IamRoleArn.t option;
    (*

    The manage access role specified in the subscription target.

    *)
  13. applicableAssetTypes : ApplicableAssetTypes.t option;
    (*

    The asset types included in the subscription target.

    *)
  14. subscriptionTargetConfig : SubscriptionTargetForms.t option;
    (*

    The configuration of the subscription target.

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

    The provider of the subscription target.

    *)
  16. 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 make : ?id:??? -> ?authorizedPrincipals:??? -> ?domainId:??? -> ?projectId:??? -> ?environmentId:??? -> ?name:??? -> ?type_:??? -> ?createdBy:??? -> ?updatedBy:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?manageAccessRole:??? -> ?applicableAssetTypes:??? -> ?subscriptionTargetConfig:??? -> ?provider:??? -> ?subscriptionGrantCreationMode:??? -> 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 SubscriptionTargetId.t | `Timestamp of CreatedAt.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