Class: Aws::AppMesh::Types::AwsCloudMapInstanceAttribute

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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 representing the AWS Cloud Map attribute information for your virtual node.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud Map service instance that contains the specified key and value is returned.

Returns:

  • (String)


1204
1205
1206
1207
1208
# File 'lib/aws-sdk-appmesh/types.rb', line 1204

class AwsCloudMapInstanceAttribute < Struct.new(
  :key,
  :value)
  include Aws::Structure
end

#valueString

The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud Map service instance that contains the specified key and value is returned.

Returns:

  • (String)


1204
1205
1206
1207
1208
# File 'lib/aws-sdk-appmesh/types.rb', line 1204

class AwsCloudMapInstanceAttribute < Struct.new(
  :key,
  :value)
  include Aws::Structure
end