Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-volumes.html

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"
             };

Synopsis

Properties

EfsVolumeConfiguration
Host
Name

Properties

EfsVolumeConfiguration

object? EfsVolumeConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-volumes.html#cfn-batch-jobdefinition-volumes-efsvolumeconfiguration

Type union: either IResolvable or CfnJobDefinition.IEfsVolumeConfigurationProperty

Host

object? Host { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-volumes.html#cfn-batch-jobdefinition-volumes-host

Type union: either IResolvable or CfnJobDefinition.IVolumesHostProperty

Name

string? Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-volumes.html#cfn-batch-jobdefinition-volumes-name

Back to top Generated by DocFX