interface CfnPackageGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeArtifact.Mixins.CfnPackageGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodeartifact/mixins#CfnPackageGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.codeartifact.mixins.CfnPackageGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_codeartifact.mixins.CfnPackageGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_codeartifact » mixins » CfnPackageGroupMixinProps |
Properties for CfnPackageGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codeartifact_mixins } from '@aws-cdk/mixins-preview/aws-codeartifact';
const cfnPackageGroupMixinProps: codeartifact_mixins.CfnPackageGroupMixinProps = {
contactInfo: 'contactInfo',
description: 'description',
domainName: 'domainName',
domainOwner: 'domainOwner',
originConfiguration: {
restrictions: {
externalUpstream: {
repositories: ['repositories'],
restrictionMode: 'restrictionMode',
},
internalUpstream: {
repositories: ['repositories'],
restrictionMode: 'restrictionMode',
},
publish: {
repositories: ['repositories'],
restrictionMode: 'restrictionMode',
},
},
},
pattern: 'pattern',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The contact information of the package group. |
| description? | string | The description of the package group. |
| domain | string | The domain that contains the package group. |
| domain | string | The 12-digit account number of the AWS account that owns the domain. |
| origin | IResolvable | Origin | Details about the package origin configuration of a package group. |
| pattern? | string | The pattern of the package group. |
| tags? | Cfn[] | An array of key-value pairs to apply to the package group. |
contactInfo?
Type:
string
(optional)
The contact information of the package group.
description?
Type:
string
(optional)
The description of the package group.
domainName?
Type:
string
(optional)
The domain that contains the package group.
domainOwner?
Type:
string
(optional)
The 12-digit account number of the AWS account that owns the domain.
It does not include dashes or spaces.
originConfiguration?
Type:
IResolvable | Origin
(optional)
Details about the package origin configuration of a package group.
pattern?
Type:
string
(optional)
The pattern of the package group.
The pattern determines which packages are associated with the package group.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to the package group.

.NET
Go
Java
Python
TypeScript