Show / Hide Table of Contents

Namespace Pulumi.Aws.ServiceQuotas

Classes

GetService

GetServiceArgs

GetServiceQuota

GetServiceQuotaArgs

GetServiceQuotaResult

GetServiceResult

ServiceQuota

Manages an individual Service Quota.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = new Aws.ServiceQuotas.ServiceQuota("example", new Aws.ServiceQuotas.ServiceQuotaArgs
    {
        QuotaCode = "L-F678F1CE",
        ServiceCode = "vpc",
        Value = 75,
    });
}

}

ServiceQuotaArgs

ServiceQuotaState

Back to top Copyright 2016-2020, Pulumi Corporation.