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.codeartifact"
},
"dotnet": {
"namespace": "Amazon.CDK.AWS.CodeArtifact"
},
"python": {
"module": "aws_cdk.aws_codeartifact"
}
}
}

View File

@@ -0,0 +1,27 @@
# AWS::CodeArtifact Construct Library
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
```ts nofixture
import * as codeartifact from 'aws-cdk-lib/aws-codeartifact';
```
<!--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 CodeArtifact construct libraries](https://constructs.dev/search?q=codeartifact)
- 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::CodeArtifact resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_CodeArtifact.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::CodeArtifact](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_CodeArtifact.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.CfnDomain=void 0,Object.defineProperty(exports,_noFold="CfnDomain",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnDomain;return Object.defineProperty(exports,_noFold="CfnDomain",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnRepository=void 0,Object.defineProperty(exports,_noFold="CfnRepository",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnRepository;return Object.defineProperty(exports,_noFold="CfnRepository",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnPackageGroup=void 0,Object.defineProperty(exports,_noFold="CfnPackageGroup",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnPackageGroup;return Object.defineProperty(exports,_noFold="CfnPackageGroup",{enumerable:!0,configurable:!0,value}),value}});

View File

@@ -0,0 +1,643 @@
import * as cdk from "../../core/lib";
import * as constructs from "constructs";
import * as cfn_parse from "../../core/lib/helpers-internal";
import { DomainReference, IDomainRef, IPackageGroupRef, IRepositoryRef, PackageGroupReference, RepositoryReference } from "../../interfaces/generated/aws-codeartifact-interfaces.generated";
/**
* The `AWS::CodeArtifact::Domain` resource creates an AWS CodeArtifact domain.
*
* CodeArtifact *domains* make it easier to manage multiple repositories across an organization. You can use a domain to apply permissions across many repositories owned by different AWS accounts. For more information about domains, see the [Domain concepts information](https://docs.aws.amazon.com/codeartifact/latest/ug/codeartifact-concepts.html#welcome-concepts-domain) in the *CodeArtifact User Guide* . For more information about the `CreateDomain` API, see [CreateDomain](https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_CreateDomain.html) in the *CodeArtifact API Reference* .
*
* @cloudformationResource AWS::CodeArtifact::Domain
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.html
*/
export declare class CfnDomain extends cdk.CfnResource implements cdk.IInspectable, IDomainRef, cdk.ITaggable {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly CFN_RESOURCE_TYPE_NAME: string;
/**
* Build a CfnDomain 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): CfnDomain;
/**
* Checks whether the given object is a CfnDomain
*/
static isCfnDomain(x: any): x is CfnDomain;
static arnForDomain(resource: IDomainRef): string;
/**
* A string that specifies the name of the requested domain.
*/
private _domainName;
/**
* The key used to encrypt the domain.
*/
private _encryptionKey?;
/**
* The document that defines the resource policy that is set on a domain.
*/
private _permissionsPolicyDocument?;
/**
* Tag Manager which manages the tags for this resource
*/
readonly tags: cdk.TagManager;
/**
* A list of tags to be applied to the domain.
*/
private _tagsRaw?;
protected readonly cfnPropertyNames: Record<string, string>;
/**
* Create a new `AWS::CodeArtifact::Domain`.
*
* @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: CfnDomainProps);
get domainRef(): DomainReference;
/**
* A string that specifies the name of the requested domain.
*/
get domainName(): string;
/**
* A string that specifies the name of the requested domain.
*/
set domainName(value: string);
/**
* The key used to encrypt the domain.
*/
get encryptionKey(): string | undefined;
/**
* The key used to encrypt the domain.
*/
set encryptionKey(value: string | undefined);
/**
* The document that defines the resource policy that is set on a domain.
*/
get permissionsPolicyDocument(): any | cdk.IResolvable | undefined;
/**
* The document that defines the resource policy that is set on a domain.
*/
set permissionsPolicyDocument(value: any | cdk.IResolvable | undefined);
/**
* A list of tags to be applied to the domain.
*/
get tagsRaw(): Array<cdk.CfnTag> | undefined;
/**
* A list of tags to be applied to the domain.
*/
set tagsRaw(value: Array<cdk.CfnTag> | undefined);
/**
* When you pass the logical ID of this resource, the function returns the Amazon Resource Name (ARN) of the domain.
*
* @cloudformationAttribute Arn
*/
get attrArn(): string;
/**
* When you pass the logical ID of this resource, the function returns the key used to encrypt the domain.
*
* @cloudformationAttribute EncryptionKey
*/
get attrEncryptionKey(): string;
/**
* When you pass the logical ID of this resource, the function returns the name of the domain.
*
* @cloudformationAttribute Name
*/
get attrName(): string;
/**
* When you pass the logical ID of this resource, the function returns the 12-digit account number of the AWS account that owns the domain.
*
* @cloudformationAttribute Owner
*/
get attrOwner(): 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 `CfnDomain`
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.html
*/
export interface CfnDomainProps {
/**
* A string that specifies the name of the requested domain.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.html#cfn-codeartifact-domain-domainname
*/
readonly domainName: string;
/**
* The key used to encrypt the domain.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.html#cfn-codeartifact-domain-encryptionkey
*/
readonly encryptionKey?: string;
/**
* The document that defines the resource policy that is set on a domain.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.html#cfn-codeartifact-domain-permissionspolicydocument
*/
readonly permissionsPolicyDocument?: any | cdk.IResolvable;
/**
* A list of tags to be applied to the domain.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-domain.html#cfn-codeartifact-domain-tags
*/
readonly tags?: Array<cdk.CfnTag>;
}
/**
* The `AWS::CodeArtifact::Repository` resource creates an AWS CodeArtifact repository.
*
* CodeArtifact *repositories* contain a set of package versions. For more information about repositories, see the [Repository concepts information](https://docs.aws.amazon.com/codeartifact/latest/ug/codeartifact-concepts.html#welcome-concepts-repository) in the *CodeArtifact User Guide* . For more information about the `CreateRepository` API, see [CreateRepository](https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_CreateRepository.html) in the *CodeArtifact API Reference* .
*
* @cloudformationResource AWS::CodeArtifact::Repository
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-repository.html
*/
export declare class CfnRepository extends cdk.CfnResource implements cdk.IInspectable, IRepositoryRef, cdk.ITaggable {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly CFN_RESOURCE_TYPE_NAME: string;
/**
* Build a CfnRepository 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): CfnRepository;
/**
* Checks whether the given object is a CfnRepository
*/
static isCfnRepository(x: any): x is CfnRepository;
static arnForRepository(resource: IRepositoryRef): string;
/**
* A text description of the repository.
*/
private _description?;
/**
* The name of the domain that contains the repository.
*/
private _domainName;
/**
* The 12-digit account number of the AWS account that owns the domain that contains the repository.
*/
private _domainOwner?;
/**
* An array of external connections associated with the repository.
*/
private _externalConnections?;
/**
* The document that defines the resource policy that is set on a repository.
*/
private _permissionsPolicyDocument?;
/**
* The name of an upstream repository.
*/
private _repositoryName;
/**
* Tag Manager which manages the tags for this resource
*/
readonly tags: cdk.TagManager;
/**
* A list of tags to be applied to the repository.
*/
private _tagsRaw?;
/**
* A list of upstream repositories to associate with the repository.
*/
private _upstreams?;
protected readonly cfnPropertyNames: Record<string, string>;
/**
* Create a new `AWS::CodeArtifact::Repository`.
*
* @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: CfnRepositoryProps);
get repositoryRef(): RepositoryReference;
/**
* A text description of the repository.
*/
get description(): string | undefined;
/**
* A text description of the repository.
*/
set description(value: string | undefined);
/**
* The name of the domain that contains the repository.
*/
get domainName(): string;
/**
* The name of the domain that contains the repository.
*/
set domainName(value: string);
/**
* The 12-digit account number of the AWS account that owns the domain that contains the repository.
*/
get domainOwner(): string | undefined;
/**
* The 12-digit account number of the AWS account that owns the domain that contains the repository.
*/
set domainOwner(value: string | undefined);
/**
* An array of external connections associated with the repository.
*/
get externalConnections(): Array<string> | undefined;
/**
* An array of external connections associated with the repository.
*/
set externalConnections(value: Array<string> | undefined);
/**
* The document that defines the resource policy that is set on a repository.
*/
get permissionsPolicyDocument(): any | cdk.IResolvable | undefined;
/**
* The document that defines the resource policy that is set on a repository.
*/
set permissionsPolicyDocument(value: any | cdk.IResolvable | undefined);
/**
* The name of an upstream repository.
*/
get repositoryName(): string;
/**
* The name of an upstream repository.
*/
set repositoryName(value: string);
/**
* A list of tags to be applied to the repository.
*/
get tagsRaw(): Array<cdk.CfnTag> | undefined;
/**
* A list of tags to be applied to the repository.
*/
set tagsRaw(value: Array<cdk.CfnTag> | undefined);
/**
* A list of upstream repositories to associate with the repository.
*/
get upstreams(): Array<string> | undefined;
/**
* A list of upstream repositories to associate with the repository.
*/
set upstreams(value: Array<string> | undefined);
/**
* When you pass the logical ID of this resource, the function returns the Amazon Resource Name (ARN) of the repository.
*
* @cloudformationAttribute Arn
*/
get attrArn(): string;
/**
* When you pass the logical ID of this resource, the function returns the domain name that contains the repository.
*
* @cloudformationAttribute DomainName
*/
get attrDomainName(): string;
/**
* When you pass the logical ID of this resource, the function returns the 12-digit account number of the AWS account that owns the domain that contains the repository.
*
* @cloudformationAttribute DomainOwner
*/
get attrDomainOwner(): string;
/**
* When you pass the logical ID of this resource, the function returns the name of the repository.
*
* @cloudformationAttribute Name
*/
get attrName(): 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 `CfnRepository`
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-repository.html
*/
export interface CfnRepositoryProps {
/**
* A text description of the repository.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-repository.html#cfn-codeartifact-repository-description
*/
readonly description?: string;
/**
* The name of the domain that contains the repository.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-repository.html#cfn-codeartifact-repository-domainname
*/
readonly domainName: string;
/**
* The 12-digit account number of the AWS account that owns the domain that contains the repository.
*
* It does not include dashes or spaces.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-repository.html#cfn-codeartifact-repository-domainowner
*/
readonly domainOwner?: string;
/**
* An array of external connections associated with the repository.
*
* For more information, see [Supported external connection repositories](https://docs.aws.amazon.com/codeartifact/latest/ug/external-connection.html#supported-public-repositories) in the *CodeArtifact user guide* .
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-repository.html#cfn-codeartifact-repository-externalconnections
*/
readonly externalConnections?: Array<string>;
/**
* The document that defines the resource policy that is set on a repository.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-repository.html#cfn-codeartifact-repository-permissionspolicydocument
*/
readonly permissionsPolicyDocument?: any | cdk.IResolvable;
/**
* The name of an upstream repository.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-repository.html#cfn-codeartifact-repository-repositoryname
*/
readonly repositoryName: string;
/**
* A list of tags to be applied to the repository.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-repository.html#cfn-codeartifact-repository-tags
*/
readonly tags?: Array<cdk.CfnTag>;
/**
* A list of upstream repositories to associate with the repository.
*
* The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see [Working with upstream repositories](https://docs.aws.amazon.com/codeartifact/latest/ug/repos-upstream.html) .
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-repository.html#cfn-codeartifact-repository-upstreams
*/
readonly upstreams?: Array<string>;
}
/**
* Creates a package group.
*
* For more information about creating package groups, including example CLI commands, see [Create a package group](https://docs.aws.amazon.com/codeartifact/latest/ug/create-package-group.html) in the *CodeArtifact User Guide* .
*
* @cloudformationResource AWS::CodeArtifact::PackageGroup
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-packagegroup.html
*/
export declare class CfnPackageGroup extends cdk.CfnResource implements cdk.IInspectable, IPackageGroupRef, cdk.ITaggableV2 {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly CFN_RESOURCE_TYPE_NAME: string;
/**
* Build a CfnPackageGroup 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): CfnPackageGroup;
/**
* Checks whether the given object is a CfnPackageGroup
*/
static isCfnPackageGroup(x: any): x is CfnPackageGroup;
static arnForPackageGroup(resource: IPackageGroupRef): string;
/**
* Tag Manager which manages the tags for this resource
*/
readonly cdkTagManager: cdk.TagManager;
/**
* The contact information of the package group.
*/
private _contactInfo?;
/**
* The description of the package group.
*/
private _description?;
/**
* The domain that contains the package group.
*/
private _domainName;
/**
* The 12-digit account number of the AWS account that owns the domain.
*/
private _domainOwner?;
/**
* Details about the package origin configuration of a package group.
*/
private _originConfiguration?;
/**
* The pattern of the package group.
*/
private _pattern;
/**
* An array of key-value pairs to apply to the package group.
*/
private _tags?;
protected readonly cfnPropertyNames: Record<string, string>;
/**
* Create a new `AWS::CodeArtifact::PackageGroup`.
*
* @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: CfnPackageGroupProps);
get packageGroupRef(): PackageGroupReference;
/**
* The contact information of the package group.
*/
get contactInfo(): string | undefined;
/**
* The contact information of the package group.
*/
set contactInfo(value: string | undefined);
/**
* The description of the package group.
*/
get description(): string | undefined;
/**
* The description of the package group.
*/
set description(value: string | undefined);
/**
* The domain that contains the package group.
*/
get domainName(): string;
/**
* The domain that contains the package group.
*/
set domainName(value: string);
/**
* The 12-digit account number of the AWS account that owns the domain.
*/
get domainOwner(): string | undefined;
/**
* The 12-digit account number of the AWS account that owns the domain.
*/
set domainOwner(value: string | undefined);
/**
* Details about the package origin configuration of a package group.
*/
get originConfiguration(): cdk.IResolvable | CfnPackageGroup.OriginConfigurationProperty | undefined;
/**
* Details about the package origin configuration of a package group.
*/
set originConfiguration(value: cdk.IResolvable | CfnPackageGroup.OriginConfigurationProperty | undefined);
/**
* The pattern of the package group.
*/
get pattern(): string;
/**
* The pattern of the package group.
*/
set pattern(value: string);
/**
* An array of key-value pairs to apply to the package group.
*/
get tags(): Array<cdk.CfnTag> | undefined;
/**
* An array of key-value pairs to apply to the package group.
*/
set tags(value: Array<cdk.CfnTag> | undefined);
/**
* The ARN of the package group.
*
* @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 CfnPackageGroup {
/**
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-originconfiguration.html
*/
interface OriginConfigurationProperty {
/**
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-originconfiguration.html#cfn-codeartifact-packagegroup-originconfiguration-restrictions
*/
readonly restrictions: cdk.IResolvable | CfnPackageGroup.RestrictionsProperty;
}
/**
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictions.html
*/
interface RestrictionsProperty {
/**
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictions.html#cfn-codeartifact-packagegroup-restrictions-externalupstream
*/
readonly externalUpstream?: cdk.IResolvable | CfnPackageGroup.RestrictionTypeProperty;
/**
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictions.html#cfn-codeartifact-packagegroup-restrictions-internalupstream
*/
readonly internalUpstream?: cdk.IResolvable | CfnPackageGroup.RestrictionTypeProperty;
/**
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictions.html#cfn-codeartifact-packagegroup-restrictions-publish
*/
readonly publish?: cdk.IResolvable | CfnPackageGroup.RestrictionTypeProperty;
}
/**
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictiontype.html
*/
interface RestrictionTypeProperty {
/**
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictiontype.html#cfn-codeartifact-packagegroup-restrictiontype-repositories
*/
readonly repositories?: Array<string>;
/**
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictiontype.html#cfn-codeartifact-packagegroup-restrictiontype-restrictionmode
*/
readonly restrictionMode: string;
}
}
/**
* Properties for defining a `CfnPackageGroup`
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-packagegroup.html
*/
export interface CfnPackageGroupProps {
/**
* The contact information of the package group.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-packagegroup.html#cfn-codeartifact-packagegroup-contactinfo
*/
readonly contactInfo?: string;
/**
* The description of the package group.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-packagegroup.html#cfn-codeartifact-packagegroup-description
*/
readonly description?: string;
/**
* The domain that contains the package group.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-packagegroup.html#cfn-codeartifact-packagegroup-domainname
*/
readonly domainName: string;
/**
* The 12-digit account number of the AWS account that owns the domain.
*
* It does not include dashes or spaces.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-packagegroup.html#cfn-codeartifact-packagegroup-domainowner
*/
readonly domainOwner?: string;
/**
* Details about the package origin configuration of a package group.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-packagegroup.html#cfn-codeartifact-packagegroup-originconfiguration
*/
readonly originConfiguration?: cdk.IResolvable | CfnPackageGroup.OriginConfigurationProperty;
/**
* The pattern of the package group.
*
* The pattern determines which packages are associated with the package group.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-packagegroup.html#cfn-codeartifact-packagegroup-pattern
*/
readonly pattern: string;
/**
* An array of key-value pairs to apply to the package group.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-packagegroup.html#cfn-codeartifact-packagegroup-tags
*/
readonly tags?: Array<cdk.CfnTag>;
}
export type { IDomainRef, DomainReference };
export type { IRepositoryRef, RepositoryReference };
export type { IPackageGroupRef, PackageGroupReference };

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
export * from './codeartifact.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.CfnDomain=void 0,Object.defineProperty(exports,_noFold="CfnDomain",{enumerable:!0,configurable:!0,get:()=>{var value=require("./codeartifact.generated").CfnDomain;return Object.defineProperty(exports,_noFold="CfnDomain",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnRepository=void 0,Object.defineProperty(exports,_noFold="CfnRepository",{enumerable:!0,configurable:!0,get:()=>{var value=require("./codeartifact.generated").CfnRepository;return Object.defineProperty(exports,_noFold="CfnRepository",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnPackageGroup=void 0,Object.defineProperty(exports,_noFold="CfnPackageGroup",{enumerable:!0,configurable:!0,get:()=>{var value=require("./codeartifact.generated").CfnPackageGroup;return Object.defineProperty(exports,_noFold="CfnPackageGroup",{enumerable:!0,configurable:!0,value}),value}});