GetAppBundleCommand

Returns information about an app bundle.

Example Syntax

Use a bare-bones client and the command you need to make an API call.

import { AppFabricClient, GetAppBundleCommand } from "@aws-sdk/client-appfabric"; // ES Modules import
// const { AppFabricClient, GetAppBundleCommand } = require("@aws-sdk/client-appfabric"); // CommonJS import
const client = new AppFabricClient(config);
const input = { // GetAppBundleRequest
  appBundleIdentifier: "STRING_VALUE", // required
};
const command = new GetAppBundleCommand(input);
const response = await client.send(command);
// { // GetAppBundleResponse
//   appBundle: { // AppBundle
//     arn: "STRING_VALUE", // required
//     customerManagedKeyArn: "STRING_VALUE",
//   },
// };

GetAppBundleCommand Input

See GetAppBundleCommandInput for more details

Parameter
Type
Description
appBundleIdentifier
Required
string | undefined

The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.

GetAppBundleCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.
appBundle
Required
AppBundle | undefined

Contains information about an app bundle.

Throws

Name
Fault
Details
AccessDeniedException
client

You are not authorized to perform this operation.

InternalServerException
server

The request processing has failed because of an unknown error, exception, or failure with an internal server.

ResourceNotFoundException
client

The specified resource does not exist.

ThrottlingException
client

The request rate exceeds the limit.

ValidationException
client

The request has invalid or missing parameters.

AppFabricServiceException
Base exception class for all service exceptions from AppFabric service.