Show / Hide Table of Contents

Class ServiceQuotaState

Inheritance
System.Object
InputArgs
ResourceArgs
ServiceQuotaState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.ServiceQuotas
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ServiceQuotaState : ResourceArgs

Constructors

View Source

ServiceQuotaState()

Declaration
public ServiceQuotaState()

Properties

View Source

Adjustable

Whether the service quota can be increased.

Declaration
public Input<bool> Adjustable { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Arn

Amazon Resource Name (ARN) of the service quota.

Declaration
public Input<string> Arn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DefaultValue

Default value of the service quota.

Declaration
public Input<double> DefaultValue { get; set; }
Property Value
Type Description
Input<System.Double>
View Source

QuotaCode

Code of the service quota to track. For example: L-F678F1CE. Available values can be found with the AWS CLI service-quotas list-service-quotas command.

Declaration
public Input<string> QuotaCode { get; set; }
Property Value
Type Description
Input<System.String>
View Source

QuotaName

Name of the quota.

Declaration
public Input<string> QuotaName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RequestId

Declaration
public Input<string> RequestId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RequestStatus

Declaration
public Input<string> RequestStatus { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ServiceCode

Code of the service to track. For example: vpc. Available values can be found with the AWS CLI service-quotas list-services command.

Declaration
public Input<string> ServiceCode { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ServiceName

Name of the service.

Declaration
public Input<string> ServiceName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Value

Float specifying the desired value for the service quota. If the desired value is higher than the current value, a quota increase request is submitted. When a known request is submitted and pending, the value reflects the desired value of the pending request.

Declaration
public Input<double> Value { get; set; }
Property Value
Type Description
Input<System.Double>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.