FileSystemConfig
- class aws_cdk.aws_codebuild.FileSystemConfig(*, location)
- Bases: - object- The type returned from {@link 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. import aws_cdk.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.