interface CfnPackageMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodeArtifact.CfnPackageMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodeartifact#CfnPackageMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.codeartifact.CfnPackageMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_codeartifact.CfnPackageMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codeartifact » CfnPackageMixinProps |
Properties for CfnPackagePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-package.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codeartifact as codeartifact } from '@aws-cdk/cfn-property-mixins';
const cfnPackageMixinProps: codeartifact.CfnPackageMixinProps = {
domainName: 'domainName',
format: 'format',
name: 'name',
namespace: 'namespace',
repository: 'repository',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The name of the domain that contains the repository that contains the package. |
| format? | string | The format of the package. |
| name? | string | The name of the package. |
| namespace? | string | The namespace of the package. |
| repository? | string | The name of the repository that contains the package. |
domainName?
Type:
string
(optional)
The name of the domain that contains the repository that contains the package.
format?
Type:
string
(optional)
The format of the package.
name?
Type:
string
(optional)
The name of the package.
namespace?
Type:
string
(optional)
The namespace of the package.
repository?
Type:
string
(optional)
The name of the repository that contains the package.

.NET
Go
Java
Python
TypeScript