FileSystemConfig

class aws_cdk.aws_codebuild.FileSystemConfig(*, location)

Bases: object

The type returned from IFileSystemLocation#bind.

Parameters:

location (Union[ProjectFileSystemLocationProperty, Dict[str, Any]]) – File system location wrapper 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

file_system_config = codebuild.FileSystemConfig(
    location=codebuild.CfnProject.ProjectFileSystemLocationProperty(
        identifier="identifier",
        location="location",
        mount_point="mountPoint",
        type="type",

        # the properties below are optional
        mount_options="mountOptions"
    )
)

Attributes

location

File system location wrapper property.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectfilesystemlocation.html