Class: Aws::AppMesh::Types::AwsCloudMapServiceDiscovery

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 AwsCloudMapServiceDiscovery data as a hash:

{
  attributes: [
    {
      key: "AwsCloudMapInstanceAttributeKey", # required
      value: "AwsCloudMapInstanceAttributeValue", # required
    },
  ],
  namespace_name: "AwsCloudMapName", # required
  service_name: "AwsCloudMapName", # required
}

An object representing the AWS Cloud Map service discovery information for your virtual node.

Instance Attribute Summary collapse

Instance Attribute Details

#attributesArray<Types::AwsCloudMapInstanceAttribute>

A string map that contains attributes with values that you can use to filter instances by any custom attribute that you specified when you registered the instance. Only instances that match all of the specified key/value pairs will be returned.



2642
2643
2644
2645
2646
2647
# File 'lib/aws-sdk-appmesh/types.rb', line 2642

class AwsCloudMapServiceDiscovery < Struct.new(
  :attributes,
  :namespace_name,
  :service_name)
  include Aws::Structure
end

#namespace_nameString

The name of the AWS Cloud Map namespace to use.

Returns:

  • (String)


2642
2643
2644
2645
2646
2647
# File 'lib/aws-sdk-appmesh/types.rb', line 2642

class AwsCloudMapServiceDiscovery < Struct.new(
  :attributes,
  :namespace_name,
  :service_name)
  include Aws::Structure
end

#service_nameString

The name of the AWS Cloud Map service to use.

Returns:

  • (String)


2642
2643
2644
2645
2646
2647
# File 'lib/aws-sdk-appmesh/types.rb', line 2642

class AwsCloudMapServiceDiscovery < Struct.new(
  :attributes,
  :namespace_name,
  :service_name)
  include Aws::Structure
end