Interface CfnJobDefinition.IVolumesProperty
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnJobDefinition.IVolumesProperty
Syntax (vb)
Public Interface CfnJobDefinition.IVolumesProperty
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.Batch;
var volumesProperty = new VolumesProperty {
EfsVolumeConfiguration = new EfsVolumeConfigurationProperty {
FileSystemId = "fileSystemId",
// the properties below are optional
AuthorizationConfig = new AuthorizationConfigProperty {
AccessPointId = "accessPointId",
Iam = "iam"
},
RootDirectory = "rootDirectory",
TransitEncryption = "transitEncryption",
TransitEncryptionPort = 123
},
Host = new VolumesHostProperty {
SourcePath = "sourcePath"
},
Name = "name",
S3FilesVolumeConfiguration = new S3FilesVolumeConfigurationProperty {
FileSystemArn = "fileSystemArn",
// the properties below are optional
AccessPointArn = "accessPointArn",
RootDirectory = "rootDirectory",
TransitEncryptionPort = 123
}
};
Synopsis
Properties
| EfsVolumeConfiguration | |
| Host | |
| Name | |
| S3FilesVolumeConfiguration |
Properties
EfsVolumeConfiguration
object? EfsVolumeConfiguration { get; }
Property Value
Remarks
Host
object? Host { get; }
Property Value
Remarks
Name
string? Name { get; }
Property Value
Remarks
S3FilesVolumeConfiguration
object? S3FilesVolumeConfiguration { get; }