agent-claw: automated task changes
This commit is contained in:
13
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/.jsiirc.json
generated
vendored
Normal file
13
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/.jsiirc.json
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"targets": {
|
||||
"java": {
|
||||
"package": "software.amazon.awscdk.services.codestarconnections"
|
||||
},
|
||||
"dotnet": {
|
||||
"namespace": "Amazon.CDK.AWS.CodeStarConnections"
|
||||
},
|
||||
"python": {
|
||||
"module": "aws_cdk.aws_codestarconnections"
|
||||
}
|
||||
}
|
||||
}
|
||||
27
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/README.md
generated
vendored
Normal file
27
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/README.md
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
# AWS::CodeStarConnections Construct Library
|
||||
|
||||
|
||||
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
|
||||
|
||||
```ts nofixture
|
||||
import * as codestarconnections from 'aws-cdk-lib/aws-codestarconnections';
|
||||
```
|
||||
|
||||
<!--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 CodeStarConnections construct libraries](https://constructs.dev/search?q=codestarconnections)
|
||||
- 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::CodeStarConnections resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_CodeStarConnections.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::CodeStarConnections](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_CodeStarConnections.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-->
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/index.d.ts
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from './lib';
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/index.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/index.js
generated
vendored
Normal 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.CfnConnection=void 0,Object.defineProperty(exports,_noFold="CfnConnection",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnConnection;return Object.defineProperty(exports,_noFold="CfnConnection",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnRepositoryLink=void 0,Object.defineProperty(exports,_noFold="CfnRepositoryLink",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnRepositoryLink;return Object.defineProperty(exports,_noFold="CfnRepositoryLink",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnSyncConfiguration=void 0,Object.defineProperty(exports,_noFold="CfnSyncConfiguration",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnSyncConfiguration;return Object.defineProperty(exports,_noFold="CfnSyncConfiguration",{enumerable:!0,configurable:!0,value}),value}});
|
||||
545
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/lib/codestarconnections.generated.d.ts
generated
vendored
Normal file
545
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/lib/codestarconnections.generated.d.ts
generated
vendored
Normal file
@@ -0,0 +1,545 @@
|
||||
import * as cdk from "../../core/lib";
|
||||
import * as constructs from "constructs";
|
||||
import * as cfn_parse from "../../core/lib/helpers-internal";
|
||||
import { ConnectionReference, IConnectionRef, IRepositoryLinkRef, ISyncConfigurationRef, RepositoryLinkReference, SyncConfigurationReference } from "../../interfaces/generated/aws-codestarconnections-interfaces.generated";
|
||||
/**
|
||||
* The AWS::CodeStarConnections::Connection resource can be used to connect external source providers with services like AWS CodePipeline .
|
||||
*
|
||||
* *Note:* A connection created through CloudFormation is in `PENDING` status by default. You can make its status `AVAILABLE` by updating the connection in the console.
|
||||
*
|
||||
* @cloudformationResource AWS::CodeStarConnections::Connection
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html
|
||||
*/
|
||||
export declare class CfnConnection extends cdk.CfnResource implements cdk.IInspectable, IConnectionRef, cdk.ITaggable {
|
||||
/**
|
||||
* The CloudFormation resource type name for this resource class.
|
||||
*/
|
||||
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
||||
/**
|
||||
* Build a CfnConnection 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): CfnConnection;
|
||||
/**
|
||||
* Checks whether the given object is a CfnConnection
|
||||
*/
|
||||
static isCfnConnection(x: any): x is CfnConnection;
|
||||
static arnForConnection(resource: IConnectionRef): string;
|
||||
/**
|
||||
* The name of the connection.
|
||||
*/
|
||||
private _connectionName;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the host associated with the connection.
|
||||
*/
|
||||
private _hostArn?;
|
||||
/**
|
||||
* The name of the external provider where your third-party code repository is configured.
|
||||
*/
|
||||
private _providerType?;
|
||||
/**
|
||||
* Tag Manager which manages the tags for this resource
|
||||
*/
|
||||
readonly tags: cdk.TagManager;
|
||||
/**
|
||||
* Specifies the tags applied to the resource.
|
||||
*/
|
||||
private _tagsRaw?;
|
||||
protected readonly cfnPropertyNames: Record<string, string>;
|
||||
/**
|
||||
* Create a new `AWS::CodeStarConnections::Connection`.
|
||||
*
|
||||
* @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: CfnConnectionProps);
|
||||
get connectionRef(): ConnectionReference;
|
||||
/**
|
||||
* The name of the connection.
|
||||
*/
|
||||
get connectionName(): string;
|
||||
/**
|
||||
* The name of the connection.
|
||||
*/
|
||||
set connectionName(value: string);
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the host associated with the connection.
|
||||
*/
|
||||
get hostArn(): string | undefined;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the host associated with the connection.
|
||||
*/
|
||||
set hostArn(value: string | undefined);
|
||||
/**
|
||||
* The name of the external provider where your third-party code repository is configured.
|
||||
*/
|
||||
get providerType(): string | undefined;
|
||||
/**
|
||||
* The name of the external provider where your third-party code repository is configured.
|
||||
*/
|
||||
set providerType(value: string | undefined);
|
||||
/**
|
||||
* Specifies the tags applied to the resource.
|
||||
*/
|
||||
get tagsRaw(): Array<cdk.CfnTag> | undefined;
|
||||
/**
|
||||
* Specifies the tags applied to the resource.
|
||||
*/
|
||||
set tagsRaw(value: Array<cdk.CfnTag> | undefined);
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services. For example: `arn:aws:codestar-connections:us-west-2:123456789012:connection/39e4c34d-e13a-4e94-a886-ea67651bf042` .
|
||||
*
|
||||
* @cloudformationAttribute ConnectionArn
|
||||
*/
|
||||
get attrConnectionArn(): string;
|
||||
/**
|
||||
* The current status of the connection. For example: `PENDING` , `AVAILABLE` , or `ERROR` .
|
||||
*
|
||||
* @cloudformationAttribute ConnectionStatus
|
||||
*/
|
||||
get attrConnectionStatus(): string;
|
||||
/**
|
||||
* The AWS account ID of the owner of the connection. For Bitbucket, this is the account ID of the owner of the Bitbucket repository. For example: `123456789012` .
|
||||
*
|
||||
* @cloudformationAttribute OwnerAccountId
|
||||
*/
|
||||
get attrOwnerAccountId(): 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>;
|
||||
}
|
||||
/**
|
||||
* Properties for defining a `CfnConnection`
|
||||
*
|
||||
* @struct
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html
|
||||
*/
|
||||
export interface CfnConnectionProps {
|
||||
/**
|
||||
* The name of the connection.
|
||||
*
|
||||
* Connection names must be unique in an AWS account .
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname
|
||||
*/
|
||||
readonly connectionName: string;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the host associated with the connection.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-hostarn
|
||||
*/
|
||||
readonly hostArn?: string;
|
||||
/**
|
||||
* The name of the external provider where your third-party code repository is configured.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype
|
||||
*/
|
||||
readonly providerType?: string;
|
||||
/**
|
||||
* Specifies the tags applied to the resource.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-tags
|
||||
*/
|
||||
readonly tags?: Array<cdk.CfnTag>;
|
||||
}
|
||||
/**
|
||||
* Information about the repository link resource, such as the repository link ARN, the associated connection ARN, encryption key ARN, and owner ID.
|
||||
*
|
||||
* @cloudformationResource AWS::CodeStarConnections::RepositoryLink
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-repositorylink.html
|
||||
*/
|
||||
export declare class CfnRepositoryLink extends cdk.CfnResource implements cdk.IInspectable, IRepositoryLinkRef, cdk.ITaggableV2 {
|
||||
/**
|
||||
* The CloudFormation resource type name for this resource class.
|
||||
*/
|
||||
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
||||
/**
|
||||
* Build a CfnRepositoryLink 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): CfnRepositoryLink;
|
||||
/**
|
||||
* Checks whether the given object is a CfnRepositoryLink
|
||||
*/
|
||||
static isCfnRepositoryLink(x: any): x is CfnRepositoryLink;
|
||||
static arnForRepositoryLink(resource: IRepositoryLinkRef): string;
|
||||
/**
|
||||
* Tag Manager which manages the tags for this resource
|
||||
*/
|
||||
readonly cdkTagManager: cdk.TagManager;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the connection associated with the repository link.
|
||||
*/
|
||||
private _connectionArn;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link.
|
||||
*/
|
||||
private _encryptionKeyArn?;
|
||||
/**
|
||||
* The owner ID for the repository associated with the repository link, such as the owner ID in GitHub.
|
||||
*/
|
||||
private _ownerId;
|
||||
/**
|
||||
* The name of the repository associated with the repository link.
|
||||
*/
|
||||
private _repositoryName;
|
||||
/**
|
||||
* The tags for the repository to be associated with the repository link.
|
||||
*/
|
||||
private _tags?;
|
||||
protected readonly cfnPropertyNames: Record<string, string>;
|
||||
/**
|
||||
* Create a new `AWS::CodeStarConnections::RepositoryLink`.
|
||||
*
|
||||
* @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: CfnRepositoryLinkProps);
|
||||
get repositoryLinkRef(): RepositoryLinkReference;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the connection associated with the repository link.
|
||||
*/
|
||||
get connectionArn(): string;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the connection associated with the repository link.
|
||||
*/
|
||||
set connectionArn(value: string);
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link.
|
||||
*/
|
||||
get encryptionKeyArn(): string | undefined;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link.
|
||||
*/
|
||||
set encryptionKeyArn(value: string | undefined);
|
||||
/**
|
||||
* The owner ID for the repository associated with the repository link, such as the owner ID in GitHub.
|
||||
*/
|
||||
get ownerId(): string;
|
||||
/**
|
||||
* The owner ID for the repository associated with the repository link, such as the owner ID in GitHub.
|
||||
*/
|
||||
set ownerId(value: string);
|
||||
/**
|
||||
* The name of the repository associated with the repository link.
|
||||
*/
|
||||
get repositoryName(): string;
|
||||
/**
|
||||
* The name of the repository associated with the repository link.
|
||||
*/
|
||||
set repositoryName(value: string);
|
||||
/**
|
||||
* The tags for the repository to be associated with the repository link.
|
||||
*/
|
||||
get tags(): Array<cdk.CfnTag> | undefined;
|
||||
/**
|
||||
* The tags for the repository to be associated with the repository link.
|
||||
*/
|
||||
set tags(value: Array<cdk.CfnTag> | undefined);
|
||||
/**
|
||||
* The name of the external provider where your third-party code repository is configured.
|
||||
*
|
||||
* @cloudformationAttribute ProviderType
|
||||
*/
|
||||
get attrProviderType(): string;
|
||||
/**
|
||||
* A unique Amazon Resource Name (ARN) to designate the repository link.
|
||||
*
|
||||
* @cloudformationAttribute RepositoryLinkArn
|
||||
*/
|
||||
get attrRepositoryLinkArn(): string;
|
||||
/**
|
||||
* A UUID that uniquely identifies the RepositoryLink.
|
||||
*
|
||||
* @cloudformationAttribute RepositoryLinkId
|
||||
*/
|
||||
get attrRepositoryLinkId(): 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>;
|
||||
}
|
||||
/**
|
||||
* Properties for defining a `CfnRepositoryLink`
|
||||
*
|
||||
* @struct
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-repositorylink.html
|
||||
*/
|
||||
export interface CfnRepositoryLinkProps {
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the connection associated with the repository link.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-repositorylink.html#cfn-codestarconnections-repositorylink-connectionarn
|
||||
*/
|
||||
readonly connectionArn: string;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-repositorylink.html#cfn-codestarconnections-repositorylink-encryptionkeyarn
|
||||
*/
|
||||
readonly encryptionKeyArn?: string;
|
||||
/**
|
||||
* The owner ID for the repository associated with the repository link, such as the owner ID in GitHub.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-repositorylink.html#cfn-codestarconnections-repositorylink-ownerid
|
||||
*/
|
||||
readonly ownerId: string;
|
||||
/**
|
||||
* The name of the repository associated with the repository link.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-repositorylink.html#cfn-codestarconnections-repositorylink-repositoryname
|
||||
*/
|
||||
readonly repositoryName: string;
|
||||
/**
|
||||
* The tags for the repository to be associated with the repository link.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-repositorylink.html#cfn-codestarconnections-repositorylink-tags
|
||||
*/
|
||||
readonly tags?: Array<cdk.CfnTag>;
|
||||
}
|
||||
/**
|
||||
* Information, such as repository, branch, provider, and resource names for a specific sync configuration.
|
||||
*
|
||||
* @cloudformationResource AWS::CodeStarConnections::SyncConfiguration
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-syncconfiguration.html
|
||||
*/
|
||||
export declare class CfnSyncConfiguration extends cdk.CfnResource implements cdk.IInspectable, ISyncConfigurationRef {
|
||||
/**
|
||||
* The CloudFormation resource type name for this resource class.
|
||||
*/
|
||||
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
||||
/**
|
||||
* Build a CfnSyncConfiguration 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): CfnSyncConfiguration;
|
||||
/**
|
||||
* Checks whether the given object is a CfnSyncConfiguration
|
||||
*/
|
||||
static isCfnSyncConfiguration(x: any): x is CfnSyncConfiguration;
|
||||
/**
|
||||
* The branch associated with a specific sync configuration.
|
||||
*/
|
||||
private _branch;
|
||||
/**
|
||||
* The file path to the configuration file associated with a specific sync configuration.
|
||||
*/
|
||||
private _configFile;
|
||||
/**
|
||||
* Whether to enable or disable publishing of deployment status to source providers.
|
||||
*/
|
||||
private _publishDeploymentStatus?;
|
||||
/**
|
||||
* The ID of the repository link associated with a specific sync configuration.
|
||||
*/
|
||||
private _repositoryLinkId;
|
||||
/**
|
||||
* The name of the connection resource associated with a specific sync configuration.
|
||||
*/
|
||||
private _resourceName;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the IAM role associated with a specific sync configuration.
|
||||
*/
|
||||
private _roleArn;
|
||||
/**
|
||||
* The type of sync for a specific sync configuration.
|
||||
*/
|
||||
private _syncType;
|
||||
/**
|
||||
* When to trigger Git sync to begin the stack update.
|
||||
*/
|
||||
private _triggerResourceUpdateOn?;
|
||||
protected readonly cfnPropertyNames: Record<string, string>;
|
||||
/**
|
||||
* Create a new `AWS::CodeStarConnections::SyncConfiguration`.
|
||||
*
|
||||
* @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: CfnSyncConfigurationProps);
|
||||
get syncConfigurationRef(): SyncConfigurationReference;
|
||||
/**
|
||||
* The branch associated with a specific sync configuration.
|
||||
*/
|
||||
get branch(): string;
|
||||
/**
|
||||
* The branch associated with a specific sync configuration.
|
||||
*/
|
||||
set branch(value: string);
|
||||
/**
|
||||
* The file path to the configuration file associated with a specific sync configuration.
|
||||
*/
|
||||
get configFile(): string;
|
||||
/**
|
||||
* The file path to the configuration file associated with a specific sync configuration.
|
||||
*/
|
||||
set configFile(value: string);
|
||||
/**
|
||||
* Whether to enable or disable publishing of deployment status to source providers.
|
||||
*/
|
||||
get publishDeploymentStatus(): string | undefined;
|
||||
/**
|
||||
* Whether to enable or disable publishing of deployment status to source providers.
|
||||
*/
|
||||
set publishDeploymentStatus(value: string | undefined);
|
||||
/**
|
||||
* The ID of the repository link associated with a specific sync configuration.
|
||||
*/
|
||||
get repositoryLinkId(): string;
|
||||
/**
|
||||
* The ID of the repository link associated with a specific sync configuration.
|
||||
*/
|
||||
set repositoryLinkId(value: string);
|
||||
/**
|
||||
* The name of the connection resource associated with a specific sync configuration.
|
||||
*/
|
||||
get resourceName(): string;
|
||||
/**
|
||||
* The name of the connection resource associated with a specific sync configuration.
|
||||
*/
|
||||
set resourceName(value: string);
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the IAM role associated with a specific sync configuration.
|
||||
*/
|
||||
get roleArn(): string;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the IAM role associated with a specific sync configuration.
|
||||
*/
|
||||
set roleArn(value: string);
|
||||
/**
|
||||
* The type of sync for a specific sync configuration.
|
||||
*/
|
||||
get syncType(): string;
|
||||
/**
|
||||
* The type of sync for a specific sync configuration.
|
||||
*/
|
||||
set syncType(value: string);
|
||||
/**
|
||||
* When to trigger Git sync to begin the stack update.
|
||||
*/
|
||||
get triggerResourceUpdateOn(): string | undefined;
|
||||
/**
|
||||
* When to trigger Git sync to begin the stack update.
|
||||
*/
|
||||
set triggerResourceUpdateOn(value: string | undefined);
|
||||
/**
|
||||
* The owner ID for the repository associated with a specific sync configuration, such as the owner ID in GitHub.
|
||||
*
|
||||
* @cloudformationAttribute OwnerId
|
||||
*/
|
||||
get attrOwnerId(): string;
|
||||
/**
|
||||
* The name of the external provider where your third-party code repository is configured.
|
||||
*
|
||||
* @cloudformationAttribute ProviderType
|
||||
*/
|
||||
get attrProviderType(): string;
|
||||
/**
|
||||
* The name of the repository that is being synced to.
|
||||
*
|
||||
* @cloudformationAttribute RepositoryName
|
||||
*/
|
||||
get attrRepositoryName(): 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>;
|
||||
}
|
||||
/**
|
||||
* Properties for defining a `CfnSyncConfiguration`
|
||||
*
|
||||
* @struct
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-syncconfiguration.html
|
||||
*/
|
||||
export interface CfnSyncConfigurationProps {
|
||||
/**
|
||||
* The branch associated with a specific sync configuration.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-syncconfiguration.html#cfn-codestarconnections-syncconfiguration-branch
|
||||
*/
|
||||
readonly branch: string;
|
||||
/**
|
||||
* The file path to the configuration file associated with a specific sync configuration.
|
||||
*
|
||||
* The path should point to an actual file in the sync configurations linked repository.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-syncconfiguration.html#cfn-codestarconnections-syncconfiguration-configfile
|
||||
*/
|
||||
readonly configFile: string;
|
||||
/**
|
||||
* Whether to enable or disable publishing of deployment status to source providers.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-syncconfiguration.html#cfn-codestarconnections-syncconfiguration-publishdeploymentstatus
|
||||
*/
|
||||
readonly publishDeploymentStatus?: string;
|
||||
/**
|
||||
* The ID of the repository link associated with a specific sync configuration.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-syncconfiguration.html#cfn-codestarconnections-syncconfiguration-repositorylinkid
|
||||
*/
|
||||
readonly repositoryLinkId: string;
|
||||
/**
|
||||
* The name of the connection resource associated with a specific sync configuration.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-syncconfiguration.html#cfn-codestarconnections-syncconfiguration-resourcename
|
||||
*/
|
||||
readonly resourceName: string;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the IAM role associated with a specific sync configuration.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-syncconfiguration.html#cfn-codestarconnections-syncconfiguration-rolearn
|
||||
*/
|
||||
readonly roleArn: string;
|
||||
/**
|
||||
* The type of sync for a specific sync configuration.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-syncconfiguration.html#cfn-codestarconnections-syncconfiguration-synctype
|
||||
*/
|
||||
readonly syncType: string;
|
||||
/**
|
||||
* When to trigger Git sync to begin the stack update.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-syncconfiguration.html#cfn-codestarconnections-syncconfiguration-triggerresourceupdateon
|
||||
*/
|
||||
readonly triggerResourceUpdateOn?: string;
|
||||
}
|
||||
export type { IConnectionRef, ConnectionReference };
|
||||
export type { IRepositoryLinkRef, RepositoryLinkReference };
|
||||
export type { ISyncConfigurationRef, SyncConfigurationReference };
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/lib/codestarconnections.generated.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/lib/codestarconnections.generated.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/lib/index.d.ts
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from './codestarconnections.generated';
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/lib/index.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codestarconnections/lib/index.js
generated
vendored
Normal 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.CfnConnection=void 0,Object.defineProperty(exports,_noFold="CfnConnection",{enumerable:!0,configurable:!0,get:()=>{var value=require("./codestarconnections.generated").CfnConnection;return Object.defineProperty(exports,_noFold="CfnConnection",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnRepositoryLink=void 0,Object.defineProperty(exports,_noFold="CfnRepositoryLink",{enumerable:!0,configurable:!0,get:()=>{var value=require("./codestarconnections.generated").CfnRepositoryLink;return Object.defineProperty(exports,_noFold="CfnRepositoryLink",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnSyncConfiguration=void 0,Object.defineProperty(exports,_noFold="CfnSyncConfiguration",{enumerable:!0,configurable:!0,get:()=>{var value=require("./codestarconnections.generated").CfnSyncConfiguration;return Object.defineProperty(exports,_noFold="CfnSyncConfiguration",{enumerable:!0,configurable:!0,value}),value}});
|
||||
Reference in New Issue
Block a user