Class: Aws::ServiceDiscovery::Types::ServiceAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceDiscovery::Types::ServiceAttributes
- Defined in:
- gems/aws-sdk-servicediscovery/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
:. -
#resource_owner ⇒ String
The ID of the Amazon Web Services account that created the namespace with which the service is associated.
-
#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.
3200 3201 3202 3203 3204 3205 3206 |
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 3200 class ServiceAttributes < Struct.new( :service_arn, :resource_owner, :attributes) SENSITIVE = [] include Aws::Structure end |
#resource_owner ⇒ String
The ID of the Amazon Web Services account that created the namespace with which the service is associated. If this isn't your account ID, it is the ID of the account that shared the namespace with your account. For more information about shared namespaces, see Cross-account Cloud Map namespace sharing in the Cloud Map Developer Guide.
3200 3201 3202 3203 3204 3205 3206 |
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 3200 class ServiceAttributes < Struct.new( :service_arn, :resource_owner, :attributes) SENSITIVE = [] include Aws::Structure end |
#service_arn ⇒ String
The ARN of the service that the attributes are associated with.
3200 3201 3202 3203 3204 3205 3206 |
# File 'gems/aws-sdk-servicediscovery/lib/aws-sdk-servicediscovery/types.rb', line 3200 class ServiceAttributes < Struct.new( :service_arn, :resource_owner, :attributes) SENSITIVE = [] include Aws::Structure end |