- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
CreateSubscriptionRequestCommand
Creates a subscription request in Amazon DataZone.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { DataZoneClient, CreateSubscriptionRequestCommand } from "@aws-sdk/client-datazone"; // ES Modules import
// const { DataZoneClient, CreateSubscriptionRequestCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
const client = new DataZoneClient(config);
const input = { // CreateSubscriptionRequestInput
domainIdentifier: "STRING_VALUE", // required
subscribedPrincipals: [ // SubscribedPrincipalInputs // required
{ // SubscribedPrincipalInput Union: only one key present
project: { // SubscribedProjectInput
identifier: "STRING_VALUE",
},
},
],
subscribedListings: [ // SubscribedListingInputs // required
{ // SubscribedListingInput
identifier: "STRING_VALUE", // required
},
],
requestReason: "STRING_VALUE", // required
clientToken: "STRING_VALUE",
metadataForms: [ // MetadataFormInputs
{ // FormInput
formName: "STRING_VALUE", // required
typeIdentifier: "STRING_VALUE",
typeRevision: "STRING_VALUE",
content: "STRING_VALUE",
},
],
};
const command = new CreateSubscriptionRequestCommand(input);
const response = await client.send(command);
// { // CreateSubscriptionRequestOutput
// id: "STRING_VALUE", // required
// createdBy: "STRING_VALUE", // required
// updatedBy: "STRING_VALUE",
// domainId: "STRING_VALUE", // required
// status: "PENDING" || "ACCEPTED" || "REJECTED", // required
// createdAt: new Date("TIMESTAMP"), // required
// updatedAt: new Date("TIMESTAMP"), // required
// requestReason: "STRING_VALUE", // required
// subscribedPrincipals: [ // SubscribedPrincipals // required
// { // SubscribedPrincipal Union: only one key present
// project: { // SubscribedProject
// id: "STRING_VALUE",
// name: "STRING_VALUE",
// },
// },
// ],
// subscribedListings: [ // SubscribedListings // required
// { // SubscribedListing
// id: "STRING_VALUE", // required
// revision: "STRING_VALUE",
// name: "STRING_VALUE", // required
// description: "STRING_VALUE", // required
// item: { // SubscribedListingItem Union: only one key present
// assetListing: { // SubscribedAssetListing
// entityId: "STRING_VALUE",
// entityRevision: "STRING_VALUE",
// entityType: "STRING_VALUE",
// forms: "STRING_VALUE",
// glossaryTerms: [ // DetailedGlossaryTerms
// { // DetailedGlossaryTerm
// name: "STRING_VALUE",
// shortDescription: "STRING_VALUE",
// },
// ],
// assetScope: { // AssetScope
// assetId: "STRING_VALUE", // required
// filterIds: [ // FilterIds // required
// "STRING_VALUE",
// ],
// status: "STRING_VALUE", // required
// errorMessage: "STRING_VALUE",
// },
// },
// productListing: { // SubscribedProductListing
// entityId: "STRING_VALUE",
// entityRevision: "STRING_VALUE",
// glossaryTerms: [
// {
// name: "STRING_VALUE",
// shortDescription: "STRING_VALUE",
// },
// ],
// name: "STRING_VALUE",
// description: "STRING_VALUE",
// assetListings: [ // AssetInDataProductListingItems
// { // AssetInDataProductListingItem
// entityId: "STRING_VALUE",
// entityRevision: "STRING_VALUE",
// entityType: "STRING_VALUE",
// },
// ],
// },
// },
// ownerProjectId: "STRING_VALUE", // required
// ownerProjectName: "STRING_VALUE",
// },
// ],
// reviewerId: "STRING_VALUE",
// decisionComment: "STRING_VALUE",
// existingSubscriptionId: "STRING_VALUE",
// metadataForms: [ // MetadataForms
// { // FormOutput
// formName: "STRING_VALUE", // required
// typeName: "STRING_VALUE",
// typeRevision: "STRING_VALUE",
// content: "STRING_VALUE",
// },
// ],
// };
CreateSubscriptionRequestCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
domainIdentifier Required | string | undefined | The ID of the Amazon DataZone domain in which the subscription request is created. |
requestReason Required | string | undefined | The reason for the subscription request. |
subscribedListings Required | SubscribedListingInput[] | undefined | The published asset for which the subscription grant is to be created. |
subscribedPrincipals Required | SubscribedPrincipalInput[] | undefined | The Amazon DataZone principals for whom the subscription request is created. |
clientToken | string | undefined | A unique, case-sensitive identifier that is provided to ensure the idempotency of the request. |
metadataForms | FormInput[] | undefined | The metadata form included in the subscription request. |
CreateSubscriptionRequestCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
createdAt Required | Date | undefined | A timestamp of when the subscription request is created. |
createdBy Required | string | undefined | The Amazon DataZone user who created the subscription request. |
domainId Required | string | undefined | The ID of the Amazon DataZone domain in whcih the subscription request is created. |
id Required | string | undefined | The ID of the subscription request. |
requestReason Required | string | undefined | The reason for the subscription request. |
status Required | SubscriptionRequestStatus | undefined | The status of the subscription request. |
subscribedListings Required | SubscribedListing[] | undefined | The published asset for which the subscription grant is to be created. |
subscribedPrincipals Required | SubscribedPrincipal[] | undefined | The subscribed principals of the subscription request. |
updatedAt Required | Date | undefined | The timestamp of when the subscription request was updated. |
decisionComment | string | undefined | The decision comment of the subscription request. |
existingSubscriptionId | string | undefined | The ID of the existing subscription. |
metadataForms | FormOutput[] | undefined | The metadata form included in the subscription request. |
reviewerId | string | undefined | The ID of the reviewer of the subscription request. |
updatedBy | string | undefined | The Amazon DataZone user who updated the subscription request. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
AccessDeniedException | client | You do not have sufficient access to perform this action. |
ConflictException | client | There is a conflict while performing this action. |
InternalServerException | server | The request has failed because of an unknown error, exception or failure. |
ResourceNotFoundException | client | The specified resource cannot be found. |
ThrottlingException | client | The request was denied due to request throttling. |
ValidationException | client | The input fails to satisfy the constraints specified by the Amazon Web Services service. |
UnauthorizedException | client | You do not have permission to perform this action. |
DataZoneServiceException | Base exception class for all service exceptions from DataZone service. |