agent-claw: automated task changes

This commit is contained in:
daniel
2026-05-06 18:55:16 -05:00
parent 38905bb1e9
commit 732b00fb66
8494 changed files with 2018127 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
{
"targets": {
"java": {
"package": "software.amazon.awscdk.services.connectcampaigns"
},
"dotnet": {
"namespace": "Amazon.CDK.AWS.ConnectCampaigns"
},
"python": {
"module": "aws_cdk.aws_connectcampaigns"
}
}
}

View File

@@ -0,0 +1,27 @@
# AWS::ConnectCampaigns Construct Library
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
```ts nofixture
import * as connectcampaigns from 'aws-cdk-lib/aws-connectcampaigns';
```
<!--BEGIN CFNONLY DISCLAIMER-->
There are no official hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. Here are some suggestions on how to proceed:
- Search [Construct Hub for ConnectCampaigns construct libraries](https://constructs.dev/search?q=connectcampaigns)
- Use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, in the same way you would use [the CloudFormation AWS::ConnectCampaigns resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_ConnectCampaigns.html) directly.
<!--BEGIN CFNONLY DISCLAIMER-->
There are no hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet.
However, you can still use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, and use this service exactly as you would using CloudFormation directly.
For more information on the resources and properties available for this service, see the [CloudFormation documentation for AWS::ConnectCampaigns](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_ConnectCampaigns.html).
(Read the [CDK Contributing Guide](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and submit an RFC if you are interested in contributing to this construct library.)
<!--END CFNONLY DISCLAIMER-->

View File

@@ -0,0 +1 @@
export * from './lib';

View File

@@ -0,0 +1 @@
"use strict";var __createBinding=exports&&exports.__createBinding||(Object.create?(function(o,m,k,k2){k2===void 0&&(k2=k);var desc=Object.getOwnPropertyDescriptor(m,k);(!desc||("get"in desc?!m.__esModule:desc.writable||desc.configurable))&&(desc={enumerable:!0,get:function(){return m[k]}}),Object.defineProperty(o,k2,desc)}):(function(o,m,k,k2){k2===void 0&&(k2=k),o[k2]=m[k]})),__exportStar=exports&&exports.__exportStar||function(m,exports2){for(var p in m)p!=="default"&&!Object.prototype.hasOwnProperty.call(exports2,p)&&__createBinding(exports2,m,p)};Object.defineProperty(exports,"__esModule",{value:!0});var _noFold;exports.CfnCampaign=void 0,Object.defineProperty(exports,_noFold="CfnCampaign",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnCampaign;return Object.defineProperty(exports,_noFold="CfnCampaign",{enumerable:!0,configurable:!0,value}),value}});

View File

@@ -0,0 +1,304 @@
import * as cdk from "../../core/lib";
import * as constructs from "constructs";
import * as cfn_parse from "../../core/lib/helpers-internal";
import { CampaignReference, ICampaignRef } from "../../interfaces/generated/aws-connectcampaigns-interfaces.generated";
/**
* Contains information about an outbound campaign.
*
* @cloudformationResource AWS::ConnectCampaigns::Campaign
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html
*/
export declare class CfnCampaign extends cdk.CfnResource implements cdk.IInspectable, ICampaignRef, cdk.ITaggable {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly CFN_RESOURCE_TYPE_NAME: string;
/**
* Build a CfnCampaign from CloudFormation properties
*
* A factory method that creates a new instance of this class from an object
* containing the CloudFormation properties of this resource.
* Used in the @aws-cdk/cloudformation-include module.
*
* @internal
*/
static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnCampaign;
/**
* Checks whether the given object is a CfnCampaign
*/
static isCfnCampaign(x: any): x is CfnCampaign;
static arnForCampaign(resource: ICampaignRef): string;
/**
* The Amazon Resource Name (ARN) of the Amazon Connect instance.
*/
private _connectInstanceArn;
/**
* Contains information about the dialer configuration.
*/
private _dialerConfig;
/**
* The name of the campaign.
*/
private _name;
/**
* Contains information about the outbound call configuration.
*/
private _outboundCallConfig;
/**
* Tag Manager which manages the tags for this resource
*/
readonly tags: cdk.TagManager;
/**
* The tags used to organize, track, or control access for this resource.
*/
private _tagsRaw?;
protected readonly cfnPropertyNames: Record<string, string>;
/**
* Create a new `AWS::ConnectCampaigns::Campaign`.
*
* @param scope Scope in which this resource is defined
* @param id Construct identifier for this resource (unique in its scope)
* @param props Resource properties
*/
constructor(scope: constructs.Construct, id: string, props: CfnCampaignProps);
get campaignRef(): CampaignReference;
/**
* The Amazon Resource Name (ARN) of the Amazon Connect instance.
*/
get connectInstanceArn(): string;
/**
* The Amazon Resource Name (ARN) of the Amazon Connect instance.
*/
set connectInstanceArn(value: string);
/**
* Contains information about the dialer configuration.
*/
get dialerConfig(): CfnCampaign.DialerConfigProperty | cdk.IResolvable;
/**
* Contains information about the dialer configuration.
*/
set dialerConfig(value: CfnCampaign.DialerConfigProperty | cdk.IResolvable);
/**
* The name of the campaign.
*/
get name(): string;
/**
* The name of the campaign.
*/
set name(value: string);
/**
* Contains information about the outbound call configuration.
*/
get outboundCallConfig(): cdk.IResolvable | CfnCampaign.OutboundCallConfigProperty;
/**
* Contains information about the outbound call configuration.
*/
set outboundCallConfig(value: cdk.IResolvable | CfnCampaign.OutboundCallConfigProperty);
/**
* The tags used to organize, track, or control access for this resource.
*/
get tagsRaw(): Array<cdk.CfnTag> | undefined;
/**
* The tags used to organize, track, or control access for this resource.
*/
set tagsRaw(value: Array<cdk.CfnTag> | undefined);
/**
* The Amazon Resource Name (ARN) of the high-volume outbound campaign.
*
* @cloudformationAttribute Arn
*/
get attrArn(): string;
protected get cfnProperties(): Record<string, any>;
/**
* Examines the CloudFormation resource and discloses attributes
*
* @param inspector tree inspector to collect and process attributes
*/
inspect(inspector: cdk.TreeInspector): void;
protected renderProperties(props: Record<string, any>): Record<string, any>;
}
export declare namespace CfnCampaign {
/**
* Contains outbound call configuration for an outbound campaign.
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-outboundcallconfig.html
*/
interface OutboundCallConfigProperty {
/**
* Whether answering machine detection has been enabled.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-outboundcallconfig.html#cfn-connectcampaigns-campaign-outboundcallconfig-answermachinedetectionconfig
*/
readonly answerMachineDetectionConfig?: CfnCampaign.AnswerMachineDetectionConfigProperty | cdk.IResolvable;
/**
* The Amazon Resource Name (ARN) of the flow.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-outboundcallconfig.html#cfn-connectcampaigns-campaign-outboundcallconfig-connectcontactflowarn
*/
readonly connectContactFlowArn: string;
/**
* The Amazon Resource Name (ARN) of the queue.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-outboundcallconfig.html#cfn-connectcampaigns-campaign-outboundcallconfig-connectqueuearn
*/
readonly connectQueueArn?: string;
/**
* The phone number associated with the outbound call.
*
* This is the caller ID that is displayed to customers when an agent calls them.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-outboundcallconfig.html#cfn-connectcampaigns-campaign-outboundcallconfig-connectsourcephonenumber
*/
readonly connectSourcePhoneNumber?: string;
}
/**
* Contains information about answering machine detection.
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-answermachinedetectionconfig.html
*/
interface AnswerMachineDetectionConfigProperty {
/**
* Whether waiting for answer machine prompt is enabled.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-answermachinedetectionconfig.html#cfn-connectcampaigns-campaign-answermachinedetectionconfig-awaitanswermachineprompt
*/
readonly awaitAnswerMachinePrompt?: boolean | cdk.IResolvable;
/**
* Whether answering machine detection is enabled.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-answermachinedetectionconfig.html#cfn-connectcampaigns-campaign-answermachinedetectionconfig-enableanswermachinedetection
*/
readonly enableAnswerMachineDetection: boolean | cdk.IResolvable;
}
/**
* Contains dialer configuration for an outbound campaign.
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-dialerconfig.html
*/
interface DialerConfigProperty {
/**
* The configuration of the agentless dialer.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-dialerconfig.html#cfn-connectcampaigns-campaign-dialerconfig-agentlessdialerconfig
*/
readonly agentlessDialerConfig?: CfnCampaign.AgentlessDialerConfigProperty | cdk.IResolvable;
/**
* The configuration of the predictive dialer.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-dialerconfig.html#cfn-connectcampaigns-campaign-dialerconfig-predictivedialerconfig
*/
readonly predictiveDialerConfig?: cdk.IResolvable | CfnCampaign.PredictiveDialerConfigProperty;
/**
* The configuration of the progressive dialer.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-dialerconfig.html#cfn-connectcampaigns-campaign-dialerconfig-progressivedialerconfig
*/
readonly progressiveDialerConfig?: cdk.IResolvable | CfnCampaign.ProgressiveDialerConfigProperty;
}
/**
* Contains agentless dialer configuration for an outbound campaign.
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-agentlessdialerconfig.html
*/
interface AgentlessDialerConfigProperty {
/**
* The allocation of dialing capacity between multiple active campaigns.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-agentlessdialerconfig.html#cfn-connectcampaigns-campaign-agentlessdialerconfig-dialingcapacity
*/
readonly dialingCapacity?: number;
}
/**
* Contains predictive dialer configuration for an outbound campaign.
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-predictivedialerconfig.html
*/
interface PredictiveDialerConfigProperty {
/**
* Bandwidth allocation for the predictive dialer.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-predictivedialerconfig.html#cfn-connectcampaigns-campaign-predictivedialerconfig-bandwidthallocation
*/
readonly bandwidthAllocation: number;
/**
* The allocation of dialing capacity between multiple active campaigns.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-predictivedialerconfig.html#cfn-connectcampaigns-campaign-predictivedialerconfig-dialingcapacity
*/
readonly dialingCapacity?: number;
}
/**
* Contains progressive dialer configuration for an outbound campaign.
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-progressivedialerconfig.html
*/
interface ProgressiveDialerConfigProperty {
/**
* Bandwidth allocation for the progressive dialer.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-progressivedialerconfig.html#cfn-connectcampaigns-campaign-progressivedialerconfig-bandwidthallocation
*/
readonly bandwidthAllocation: number;
/**
* The allocation of dialing capacity between multiple active campaigns.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-progressivedialerconfig.html#cfn-connectcampaigns-campaign-progressivedialerconfig-dialingcapacity
*/
readonly dialingCapacity?: number;
}
}
/**
* Properties for defining a `CfnCampaign`
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html
*/
export interface CfnCampaignProps {
/**
* The Amazon Resource Name (ARN) of the Amazon Connect instance.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html#cfn-connectcampaigns-campaign-connectinstancearn
*/
readonly connectInstanceArn: string;
/**
* Contains information about the dialer configuration.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html#cfn-connectcampaigns-campaign-dialerconfig
*/
readonly dialerConfig: CfnCampaign.DialerConfigProperty | cdk.IResolvable;
/**
* The name of the campaign.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html#cfn-connectcampaigns-campaign-name
*/
readonly name: string;
/**
* Contains information about the outbound call configuration.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html#cfn-connectcampaigns-campaign-outboundcallconfig
*/
readonly outboundCallConfig: cdk.IResolvable | CfnCampaign.OutboundCallConfigProperty;
/**
* The tags used to organize, track, or control access for this resource.
*
* For example, { "tags": {"key1":"value1", "key2":"value2"} }.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html#cfn-connectcampaigns-campaign-tags
*/
readonly tags?: Array<cdk.CfnTag>;
}
export type { ICampaignRef, CampaignReference };

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
export * from './connectcampaigns.generated';

View File

@@ -0,0 +1 @@
"use strict";var __createBinding=exports&&exports.__createBinding||(Object.create?(function(o,m,k,k2){k2===void 0&&(k2=k);var desc=Object.getOwnPropertyDescriptor(m,k);(!desc||("get"in desc?!m.__esModule:desc.writable||desc.configurable))&&(desc={enumerable:!0,get:function(){return m[k]}}),Object.defineProperty(o,k2,desc)}):(function(o,m,k,k2){k2===void 0&&(k2=k),o[k2]=m[k]})),__exportStar=exports&&exports.__exportStar||function(m,exports2){for(var p in m)p!=="default"&&!Object.prototype.hasOwnProperty.call(exports2,p)&&__createBinding(exports2,m,p)};Object.defineProperty(exports,"__esModule",{value:!0});var _noFold;exports.CfnCampaign=void 0,Object.defineProperty(exports,_noFold="CfnCampaign",{enumerable:!0,configurable:!0,get:()=>{var value=require("./connectcampaigns.generated").CfnCampaign;return Object.defineProperty(exports,_noFold="CfnCampaign",{enumerable:!0,configurable:!0,value}),value}});