Class AWSResourceTag
- java.lang.Object
-
- io.fabric8.openshift.api.model.config.v1.AWSResourceTag
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<AWSResourceTagBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class AWSResourceTag extends Object implements io.fabric8.kubernetes.api.builder.Editable<AWSResourceTagBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
AWSResourceTag is a tag to apply to AWS resources created for the cluster.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AWSResourceTag()No args constructor for use in serializationAWSResourceTag(String key, String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AWSResourceTagBuilderedit()Map<String,Object>getAdditionalProperties()StringgetKey()key sets the key of the AWS resource tag key-value pair.StringgetValue()value sets the value of the AWS resource tag key-value pair.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetKey(String key)key sets the key of the AWS resource tag key-value pair.voidsetValue(String value)value sets the value of the AWS resource tag key-value pair.AWSResourceTagBuildertoBuilder()
-
-
-
Method Detail
-
getKey
public String getKey()
key sets the key of the AWS resource tag key-value pair. Key is required when defining an AWS resource tag. Key should consist of between 1 and 128 characters, and may contain only the set of alphanumeric characters, space (' '), '_', '.', '/', '=', '+', '-', ':', and '@'.
-
setKey
public void setKey(String key)
key sets the key of the AWS resource tag key-value pair. Key is required when defining an AWS resource tag. Key should consist of between 1 and 128 characters, and may contain only the set of alphanumeric characters, space (' '), '_', '.', '/', '=', '+', '-', ':', and '@'.
-
getValue
public String getValue()
value sets the value of the AWS resource tag key-value pair. Value is required when defining an AWS resource tag. Value should consist of between 1 and 256 characters, and may contain only the set of alphanumeric characters, space (' '), '_', '.', '/', '=', '+', '-', ':', and '@'. Some AWS service do not support empty values. Since tags are added to resources in many services, the length of the tag value must meet the requirements of all services.
-
setValue
public void setValue(String value)
value sets the value of the AWS resource tag key-value pair. Value is required when defining an AWS resource tag. Value should consist of between 1 and 256 characters, and may contain only the set of alphanumeric characters, space (' '), '_', '.', '/', '=', '+', '-', ':', and '@'. Some AWS service do not support empty values. Since tags are added to resources in many services, the length of the tag value must meet the requirements of all services.
-
edit
public AWSResourceTagBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<AWSResourceTagBuilder>
-
toBuilder
public AWSResourceTagBuilder toBuilder()
-
-