Show / Hide Table of Contents

Class CfnJobDefinition.VolumesProperty

Inheritance
object
CfnJobDefinition.VolumesProperty
Implements
CfnJobDefinition.IVolumesProperty
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.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnJobDefinition.VolumesProperty : CfnJobDefinition.IVolumesProperty
Syntax (vb)
Public Class CfnJobDefinition.VolumesProperty Implements 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

Constructors

VolumesProperty()

Properties

EfsVolumeConfiguration
Host
Name

Constructors

VolumesProperty()

public VolumesProperty()
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"
             };

Properties

EfsVolumeConfiguration

public object? EfsVolumeConfiguration { get; set; }
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

public object? Host { get; set; }
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

public string? Name { get; set; }
Property Value

string

Remarks

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

Implements

CfnJobDefinition.IVolumesProperty
Back to top Generated by DocFX