Interface ServiceAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ServiceAttributes.Builder,ServiceAttributes>,SdkBuilder<ServiceAttributes.Builder,ServiceAttributes>,SdkPojo
- Enclosing class:
- ServiceAttributes
public static interface ServiceAttributes.Builder extends SdkPojo, CopyableBuilder<ServiceAttributes.Builder,ServiceAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceAttributes.Builderattributes(Map<String,String> attributes)A string map that contains the following information for the service that you specify inServiceArn:ServiceAttributes.BuilderserviceArn(String serviceArn)The ARN of the service that the attributes are associated with.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
serviceArn
ServiceAttributes.Builder serviceArn(String serviceArn)
The ARN of the service that the attributes are associated with.
- Parameters:
serviceArn- The ARN of the service that the attributes are associated with.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
ServiceAttributes.Builder attributes(Map<String,String> attributes)
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.
- Parameters:
attributes- A string map that contains the following information for the service that you specify inServiceArn:-
The attributes that apply to the service.
-
For each attribute, the applicable value.
You can specify a total of 30 attributes.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-