agent-claw: automated task changes
This commit is contained in:
63
cdk/node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/mediaconvert/create-job.d.ts
generated
vendored
Normal file
63
cdk/node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/mediaconvert/create-job.d.ts
generated
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import * as iam from '../../../aws-iam';
|
||||
import * as sfn from '../../../aws-stepfunctions';
|
||||
interface MediaConvertCreateJobOptions {
|
||||
/**
|
||||
* The input data for the MediaConvert Create Job invocation
|
||||
*/
|
||||
readonly createJobRequest: {
|
||||
[key: string]: any;
|
||||
};
|
||||
}
|
||||
/**
|
||||
* Properties for creating a MediaConvert Job using JSONPath
|
||||
*/
|
||||
export interface MediaConvertCreateJobJsonPathProps extends sfn.TaskStateJsonPathBaseProps, MediaConvertCreateJobOptions {
|
||||
}
|
||||
/**
|
||||
* Properties for creating a MediaConvert Job using JSONata
|
||||
*/
|
||||
export interface MediaConvertCreateJobJsonataProps extends sfn.TaskStateJsonataBaseProps, MediaConvertCreateJobOptions {
|
||||
}
|
||||
/**
|
||||
* Properties for creating a MediaConvert Job
|
||||
*
|
||||
* See the CreateJob API for complete documentation
|
||||
* @see https://docs.aws.amazon.com/mediaconvert/latest/apireference/jobs.html#jobspost
|
||||
*
|
||||
*/
|
||||
export interface MediaConvertCreateJobProps extends sfn.TaskStateBaseProps, MediaConvertCreateJobOptions {
|
||||
}
|
||||
/**
|
||||
* A Step Functions Task to create a job in MediaConvert.
|
||||
*
|
||||
* The JobConfiguration/Request Syntax is defined in the Parameters in the Task State
|
||||
* @see https://docs.aws.amazon.com/step-functions/latest/dg/connect-mediaconvert.html
|
||||
*
|
||||
* Response syntax: see CreateJobResponse schema
|
||||
* https://docs.aws.amazon.com/mediaconvert/latest/apireference/jobs.html#jobs-response-examples
|
||||
*/
|
||||
export declare class MediaConvertCreateJob extends sfn.TaskStateBase {
|
||||
private readonly props;
|
||||
/**
|
||||
* A Step Functions Task to create a job in MediaConvert using JSONPath.
|
||||
*/
|
||||
static jsonPath(scope: Construct, id: string, props: MediaConvertCreateJobJsonPathProps): MediaConvertCreateJob;
|
||||
/**
|
||||
* A Step Functions Task to create a job in MediaConvert using JSONata.
|
||||
*/
|
||||
static jsonata(scope: Construct, id: string, props: MediaConvertCreateJobJsonataProps): MediaConvertCreateJob;
|
||||
private static readonly SUPPORTED_INTEGRATION_PATTERNS;
|
||||
protected readonly taskMetrics: sfn.TaskMetricsConfig | undefined;
|
||||
protected readonly taskPolicies: iam.PolicyStatement[] | undefined;
|
||||
private readonly integrationPattern;
|
||||
constructor(scope: Construct, id: string, props: MediaConvertCreateJobProps);
|
||||
private renderPolicyStatements;
|
||||
/**
|
||||
* Provides the MediaConvert CreateJob Service Integration Task Configuration
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
protected _renderTask(topLevelQueryLanguage?: sfn.QueryLanguage): any;
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user