Show / Hide Table of Contents

Class FileSystemConfig

The type returned from IFileSystemLocation#bind.

Inheritance
object
FileSystemConfig
Implements
IFileSystemConfig
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CodeBuild
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FileSystemConfig : IFileSystemConfig
Syntax (vb)
Public Class FileSystemConfig Implements IFileSystemConfig
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CodeBuild;

            var fileSystemConfig = new FileSystemConfig {
                Location = new ProjectFileSystemLocationProperty {
                    Identifier = "identifier",
                    Location = "location",
                    MountPoint = "mountPoint",
                    Type = "type",

                    // the properties below are optional
                    MountOptions = "mountOptions"
                }
            };

Synopsis

Constructors

FileSystemConfig()

The type returned from IFileSystemLocation#bind.

Properties

Location

File system location wrapper property.

Constructors

FileSystemConfig()

The type returned from IFileSystemLocation#bind.

public FileSystemConfig()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CodeBuild;

            var fileSystemConfig = new FileSystemConfig {
                Location = new ProjectFileSystemLocationProperty {
                    Identifier = "identifier",
                    Location = "location",
                    MountPoint = "mountPoint",
                    Type = "type",

                    // the properties below are optional
                    MountOptions = "mountOptions"
                }
            };

Properties

Location

File system location wrapper property.

public CfnProject.IProjectFileSystemLocationProperty Location { get; set; }
Property Value

CfnProject.IProjectFileSystemLocationProperty

Remarks

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

Implements

IFileSystemConfig
Back to top Generated by DocFX