Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/cli/commands/run/command.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,6 @@ export const registerRun = (program: Command) => {
.option('--wait', 'Block until the job reaches a terminal state')
.option('--region <region>', 'AWS region (auto-detected if omitted)')
.option('--endpoint <name>', 'Runtime endpoint name (e.g. PROMPT_V1)')
.option('--kms-key <arn>', 'KMS key ARN for encrypting insights job results')
.option('--json', 'Output as JSON')
.action(
async (cliOptions: {
Expand All @@ -392,7 +391,6 @@ export const registerRun = (program: Command) => {
wait?: boolean;
region?: string;
endpoint?: string;
kmsKey?: string;
json?: boolean;
}) => {
requireProject();
Expand Down Expand Up @@ -426,7 +424,6 @@ export const registerRun = (program: Command) => {
name: cliOptions.name,
region: cliOptions.region,
endpoint: cliOptions.endpoint,
kmsKeyArn: cliOptions.kmsKey,
onProgress: cliOptions.json ? undefined : (_status, message) => console.log(message),
});
if (!startResult.success) {
Expand Down
1 change: 0 additions & 1 deletion src/cli/operations/jobs/insights/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ export const insightsHandler: InsightsHandler = {
: {}),
dataSourceConfig,
clientToken: generateClientToken(),
...(opts.kmsKeyArn ? { kmsKeyArn: opts.kmsKeyArn } : {}),
});
logger?.log(`Response: ${JSON.stringify(startResult, null, 2)}`);
logger?.endStep('success');
Expand Down
2 changes: 0 additions & 2 deletions src/cli/operations/jobs/shared/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,8 +288,6 @@ export interface StartInsightsJobOptions {
name?: string;
region?: string;
endpoint?: string;
/** KMS key ARN for encrypting insights job results. */
kmsKeyArn?: string;
onProgress?: (status: string, message: string) => void;
}

Expand Down
Loading