Interface CfnPackageMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPackageMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:17.420Z")
@Stability(Stable)
public interface CfnPackageMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPackagePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.codeartifact.*;
CfnPackageMixinProps cfnPackageMixinProps = CfnPackageMixinProps.builder()
.domainName("domainName")
.format("format")
.name("name")
.namespace("namespace")
.repository("repository")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPackageMixinPropsstatic final classAn implementation forCfnPackageMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPackageMixinProps.Builderbuilder()default StringThe name of the domain that contains the repository that contains the package.default StringThe format of the package.default StringgetName()The name of the package.default StringThe namespace of the package.default StringThe name of the repository that contains the package.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainName
The name of the domain that contains the repository that contains the package.- See Also:
-
getFormat
The format of the package.- See Also:
-
getName
The name of the package.- See Also:
-
getNamespace
The namespace of the package.- See Also:
-
getRepository
The name of the repository that contains the package.- See Also:
-
builder
- Returns:
- a
CfnPackageMixinProps.BuilderofCfnPackageMixinProps
-