Show / Hide Table of Contents

Interface ICfnQuotaShareProps

Properties for defining a CfnQuotaShare.

Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnQuotaShareProps
Syntax (vb)
Public Interface ICfnQuotaShareProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-quotashare.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 cfnQuotaShareProps = new CfnQuotaShareProps {
                 CapacityLimits = new [] { new QuotaShareCapacityLimitProperty {
                     CapacityUnit = "capacityUnit",
                     MaxCapacity = 123
                 } },
                 JobQueue = "jobQueue",
                 PreemptionConfiguration = new QuotaSharePreemptionConfigurationProperty {
                     InSharePreemption = "inSharePreemption"
                 },
                 QuotaShareName = "quotaShareName",
                 ResourceSharingConfiguration = new QuotaShareResourceSharingConfigurationProperty {
                     Strategy = "strategy",

                     // the properties below are optional
                     BorrowLimit = 123
                 },

                 // the properties below are optional
                 State = "state",
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Synopsis

Properties

CapacityLimits

The capacity limits for the quota share.

JobQueue

The Amazon Resource Name (ARN) or name of the job queue.

PreemptionConfiguration

Properties for defining a CfnQuotaShare.

QuotaShareName

The name of the quota share.

ResourceSharingConfiguration

Properties for defining a CfnQuotaShare.

State

The state of the quota share.

Tags

A key-value pair to associate with a resource.

Properties

CapacityLimits

The capacity limits for the quota share.

object CapacityLimits { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-quotashare.html#cfn-batch-quotashare-capacitylimits

Type union: either IResolvable or (either IResolvable or CfnQuotaShare.IQuotaShareCapacityLimitProperty)[]

JobQueue

The Amazon Resource Name (ARN) or name of the job queue.

string JobQueue { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-quotashare.html#cfn-batch-quotashare-jobqueue

PreemptionConfiguration

Properties for defining a CfnQuotaShare.

object PreemptionConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-quotashare.html#cfn-batch-quotashare-preemptionconfiguration

Type union: either IResolvable or CfnQuotaShare.IQuotaSharePreemptionConfigurationProperty

QuotaShareName

The name of the quota share.

string QuotaShareName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-quotashare.html#cfn-batch-quotashare-quotasharename

ResourceSharingConfiguration

Properties for defining a CfnQuotaShare.

object ResourceSharingConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-quotashare.html#cfn-batch-quotashare-resourcesharingconfiguration

Type union: either IResolvable or CfnQuotaShare.IQuotaShareResourceSharingConfigurationProperty

State

The state of the quota share.

string? State { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-quotashare.html#cfn-batch-quotashare-state

Tags

A key-value pair to associate with a resource.

IDictionary<string, string>? Tags { get; }
Property Value

IDictionary<string, string>

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-quotashare.html#cfn-batch-quotashare-tags

Back to top Generated by DocFX