Class: Aws::ServiceQuotas::Types::QuotaContextInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceQuotas::Types::QuotaContextInfo
- Defined in:
- gems/aws-sdk-servicequotas/lib/aws-sdk-servicequotas/types.rb
Overview
A structure that describes the context for a service quota. The context identifies what the quota applies to.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#context_id ⇒ String
Specifies the Amazon Web Services account or resource to which the quota applies.
-
#context_scope ⇒ String
Specifies whether the quota applies to an Amazon Web Services account, or to a resource.
-
#context_scope_type ⇒ String
When the
ContextScope
isRESOURCE
, then this specifies the resource type of the specified resource.
Instance Attribute Details
#context_id ⇒ String
Specifies the Amazon Web Services account or resource to which the quota applies. The value in this field depends on the context scope associated with the specified service quota.
902 903 904 905 906 907 908 |
# File 'gems/aws-sdk-servicequotas/lib/aws-sdk-servicequotas/types.rb', line 902 class QuotaContextInfo < Struct.new( :context_scope, :context_scope_type, :context_id) SENSITIVE = [] include Aws::Structure end |
#context_scope ⇒ String
Specifies whether the quota applies to an Amazon Web Services account, or to a resource.
902 903 904 905 906 907 908 |
# File 'gems/aws-sdk-servicequotas/lib/aws-sdk-servicequotas/types.rb', line 902 class QuotaContextInfo < Struct.new( :context_scope, :context_scope_type, :context_id) SENSITIVE = [] include Aws::Structure end |
#context_scope_type ⇒ String
When the ContextScope
is RESOURCE
, then this specifies the
resource type of the specified resource.
902 903 904 905 906 907 908 |
# File 'gems/aws-sdk-servicequotas/lib/aws-sdk-servicequotas/types.rb', line 902 class QuotaContextInfo < Struct.new( :context_scope, :context_scope_type, :context_id) SENSITIVE = [] include Aws::Structure end |