Class: Aws::AppMesh::Types::AwsCloudMapInstanceAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::AwsCloudMapInstanceAttribute
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass AwsCloudMapInstanceAttribute data as a hash:
{
key: "AwsCloudMapInstanceAttributeKey", # required
value: "AwsCloudMapInstanceAttributeValue", # required
}
An object that represents the Cloud Map attribute information for your virtual node.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The name of an Cloud Map service instance attribute key.
-
#value ⇒ String
The value of an Cloud Map service instance attribute key.
Instance Attribute Details
#key ⇒ String
The name of an Cloud Map service instance attribute key. Any Cloud Map service instance that contains the specified key and value is returned.
66 67 68 69 70 71 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 66 class AwsCloudMapInstanceAttribute < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of an Cloud Map service instance attribute key. Any Cloud Map service instance that contains the specified key and value is returned.
66 67 68 69 70 71 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 66 class AwsCloudMapInstanceAttribute < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |