CfnPackageMixinProps
- class aws_cdk.cfn_property_mixins.aws_codeartifact.CfnPackageMixinProps(*, domain_name=None, format=None, name=None, namespace=None, repository=None)
Bases:
objectProperties for CfnPackagePropsMixin.
- Parameters:
domain_name (
Optional[str]) – The name of the domain that contains the repository that contains the package.format (
Optional[str]) – The format of the package.name (
Optional[str]) – The name of the package.namespace (
Optional[str]) – The namespace of the package.repository (
Optional[str]) – The name of the repository that contains the package.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-package.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_codeartifact as codeartifact cfn_package_mixin_props = codeartifact.CfnPackageMixinProps( domain_name="domainName", format="format", name="name", namespace="namespace", repository="repository" )
Attributes
- domain_name
The name of the domain that contains the repository that contains the package.
- format
The format of the package.
- name
The name of the package.
- namespace
The namespace of the package.
- repository
The name of the repository that contains the package.