- 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.
GetImageRecipePolicyCommand
Gets an image recipe policy.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { ImagebuilderClient, GetImageRecipePolicyCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
// const { ImagebuilderClient, GetImageRecipePolicyCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
const client = new ImagebuilderClient(config);
const input = { // GetImageRecipePolicyRequest
imageRecipeArn: "STRING_VALUE", // required
};
const command = new GetImageRecipePolicyCommand(input);
const response = await client.send(command);
// { // GetImageRecipePolicyResponse
// requestId: "STRING_VALUE",
// policy: "STRING_VALUE",
// };
GetImageRecipePolicyCommand Input
See GetImageRecipePolicyCommandInput for more details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
imageRecipeArn Required | string | undefined | The Amazon Resource Name (ARN) of the image recipe whose policy you want to retrieve. |
GetImageRecipePolicyCommand Output
See GetImageRecipePolicyCommandOutput for details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
policy | string | undefined | The image recipe policy object. |
requestId | string | undefined | The request ID that uniquely identifies this request. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
CallRateLimitExceededException | client | You have exceeded the permitted request rate for the specific operation. |
ForbiddenException | client | You are not authorized to perform the requested operation. |
InvalidRequestException | client | You have requested an action that that the service doesn't support. |
ResourceNotFoundException | client | At least one of the resources referenced by your request does not exist. |
ServiceException | server | This exception is thrown when the service encounters an unrecoverable exception. |
ServiceUnavailableException | server | The service is unable to process your request at this time. |
ImagebuilderServiceException | Base exception class for all service exceptions from Imagebuilder service. |