Class: Aws::ServiceDiscovery::Types::ServiceAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceDiscovery::Types::ServiceAttributes
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-servicediscovery/types.rb
Overview
A complex type that contains information about attributes associated with a specific service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Hash<String,String>
A string map that contains the following information for the service that you specify in ‘ServiceArn`:.
-
#service_arn ⇒ String
The ARN of the service that the attributes are associated with.
Instance Attribute Details
#attributes ⇒ Hash<String,String>
A string map that contains the following information for the service that you specify in ‘ServiceArn`:
-
The attributes that apply to the service.
-
For each attribute, the applicable value.
You can specify a total of 30 attributes.
2946 2947 2948 2949 2950 2951 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 2946 class ServiceAttributes < Struct.new( :service_arn, :attributes) SENSITIVE = [] include Aws::Structure end |
#service_arn ⇒ String
The ARN of the service that the attributes are associated with.
2946 2947 2948 2949 2950 2951 |
# File 'lib/aws-sdk-servicediscovery/types.rb', line 2946 class ServiceAttributes < Struct.new( :service_arn, :attributes) SENSITIVE = [] include Aws::Structure end |