We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0890e0a commit a6ac50dCopy full SHA for a6ac50d
1 file changed
src/cli/operations/deploy/gateway-status.ts
@@ -30,7 +30,9 @@ export function formatTargetStatus(status: string): string {
30
export async function getGatewayTargetStatuses(gatewayId: string, region: string): Promise<TargetSyncStatus[]> {
31
try {
32
const client = new BedrockAgentCoreControlClient({ region });
33
- const response = await client.send(new ListGatewayTargetsCommand({ gatewayIdentifier: gatewayId, maxResults: 100 }));
+ const response = await client.send(
34
+ new ListGatewayTargetsCommand({ gatewayIdentifier: gatewayId, maxResults: 100 })
35
+ );
36
37
return (response.items ?? []).map(target => ({
38
name: target.name ?? 'unknown',
0 commit comments