Show / Hide Table of Contents

Class CfnJobDefinition.ResourcesProperty

Inheritance
object
CfnJobDefinition.ResourcesProperty
Implements
CfnJobDefinition.IResourcesProperty
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.ResourcesProperty : CfnJobDefinition.IResourcesProperty
Syntax (vb)
Public Class CfnJobDefinition.ResourcesProperty Implements CfnJobDefinition.IResourcesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-resources.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 limits;
             var requests;

             var resourcesProperty = new ResourcesProperty {
                 Limits = limits,
                 Requests = requests
             };

Synopsis

Constructors

ResourcesProperty()

Properties

Limits
Requests

Constructors

ResourcesProperty()

public ResourcesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-resources.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 limits;
             var requests;

             var resourcesProperty = new ResourcesProperty {
                 Limits = limits,
                 Requests = requests
             };

Properties

Limits

public object? Limits { get; set; }
Property Value

object

Remarks

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

Requests

public object? Requests { get; set; }
Property Value

object

Remarks

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

Implements

CfnJobDefinition.IResourcesProperty
Back to top Generated by DocFX