agent-claw: automated task changes
This commit is contained in:
41
cdk/node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/alexa-ask/deploy-action.d.ts
generated
vendored
Normal file
41
cdk/node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/alexa-ask/deploy-action.d.ts
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import * as codepipeline from '../../../aws-codepipeline';
|
||||
import type { SecretValue } from '../../../core';
|
||||
import { Action } from '../action';
|
||||
/**
|
||||
* Construction properties of the `AlexaSkillDeployAction Alexa deploy Action`.
|
||||
*/
|
||||
export interface AlexaSkillDeployActionProps extends codepipeline.CommonActionProps {
|
||||
/**
|
||||
* The client id of the developer console token
|
||||
*/
|
||||
readonly clientId: string;
|
||||
/**
|
||||
* The client secret of the developer console token
|
||||
*/
|
||||
readonly clientSecret: SecretValue;
|
||||
/**
|
||||
* The refresh token of the developer console token
|
||||
*/
|
||||
readonly refreshToken: SecretValue;
|
||||
/**
|
||||
* The Alexa skill id
|
||||
*/
|
||||
readonly skillId: string;
|
||||
/**
|
||||
* The source artifact containing the voice model and skill manifest
|
||||
*/
|
||||
readonly input: codepipeline.Artifact;
|
||||
/**
|
||||
* An optional artifact containing overrides for the skill manifest
|
||||
*/
|
||||
readonly parameterOverridesArtifact?: codepipeline.Artifact;
|
||||
}
|
||||
/**
|
||||
* Deploys the skill to Alexa
|
||||
*/
|
||||
export declare class AlexaSkillDeployAction extends Action {
|
||||
private readonly props;
|
||||
constructor(props: AlexaSkillDeployActionProps);
|
||||
protected bound(_scope: Construct, _stage: codepipeline.IStage, _options: codepipeline.ActionBindOptions): codepipeline.ActionConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user