ArtifactsConfig

class aws_cdk.aws_codebuild.ArtifactsConfig(*, artifacts_property)

Bases: object

The type returned from IArtifacts#bind.

Parameters:

artifacts_property (Union[ArtifactsProperty, Dict[str, Any]]) – The low-level CloudFormation artifacts property.

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 import aws_codebuild as codebuild

artifacts_config = codebuild.ArtifactsConfig(
    artifacts_property=codebuild.CfnProject.ArtifactsProperty(
        type="type",

        # the properties below are optional
        artifact_identifier="artifactIdentifier",
        encryption_disabled=False,
        location="location",
        name="name",
        namespace_type="namespaceType",
        override_artifact_name=False,
        packaging="packaging",
        path="path"
    )
)

Attributes

artifacts_property

The low-level CloudFormation artifacts property.