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;
|
||||
}
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/alexa-ask/deploy-action.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/alexa-ask/deploy-action.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.AlexaSkillDeployAction=void 0;var jsiiDeprecationWarnings=()=>{var tmp=require("../../../.warnings.jsii.js");return jsiiDeprecationWarnings=()=>tmp,tmp};const JSII_RTTI_SYMBOL_1=Symbol.for("jsii.rtti");var codepipeline=()=>{var tmp=require("../../../aws-codepipeline");return codepipeline=()=>tmp,tmp},action_1=()=>{var tmp=require("../action");return action_1=()=>tmp,tmp};class AlexaSkillDeployAction extends action_1().Action{static[JSII_RTTI_SYMBOL_1]={fqn:"aws-cdk-lib.aws_codepipeline_actions.AlexaSkillDeployAction",version:"2.252.0"};props;constructor(props){super({...props,category:codepipeline().ActionCategory.DEPLOY,owner:"ThirdParty",provider:"AlexaSkillsKit",artifactBounds:{minInputs:1,maxInputs:2,minOutputs:0,maxOutputs:0},inputs:getInputs(props)});try{jsiiDeprecationWarnings().aws_cdk_lib_aws_codepipeline_actions_AlexaSkillDeployActionProps(props)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,AlexaSkillDeployAction),error}this.props=props}bound(_scope,_stage,_options){try{jsiiDeprecationWarnings().aws_cdk_lib_aws_codepipeline_IStage(_stage),jsiiDeprecationWarnings().aws_cdk_lib_aws_codepipeline_ActionBindOptions(_options)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,this.bound),error}return{configuration:{ClientId:this.props.clientId,ClientSecret:this.props.clientSecret.unsafeUnwrap(),RefreshToken:this.props.refreshToken.unsafeUnwrap(),SkillId:this.props.skillId}}}}exports.AlexaSkillDeployAction=AlexaSkillDeployAction;function getInputs(props){const ret=[props.input];return props.parameterOverridesArtifact&&ret.push(props.parameterOverridesArtifact),ret}
|
||||
Reference in New Issue
Block a user