Interface ResourceRecord.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResourceRecord.Builder,ResourceRecord>,SdkBuilder<ResourceRecord.Builder,ResourceRecord>,SdkPojo
- Enclosing class:
- ResourceRecord
public static interface ResourceRecord.Builder extends SdkPojo, CopyableBuilder<ResourceRecord.Builder,ResourceRecord>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceRecord.Buildervalue(String value)The current or new DNS record value, not to exceed 4,000 characters.-
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, sdkFields
-
-
-
-
Method Detail
-
value
ResourceRecord.Builder value(String value)
The current or new DNS record value, not to exceed 4,000 characters. In the case of a
DELETEaction, if the current value does not match the actual value, an error is returned. For descriptions about how to formatValuefor different record types, see Supported DNS Resource Record Types in the Amazon Route 53 Developer Guide.You can specify more than one value for all record types except
CNAMEandSOA.If you're creating an alias resource record set, omit
Value.- Parameters:
value- The current or new DNS record value, not to exceed 4,000 characters. In the case of aDELETEaction, if the current value does not match the actual value, an error is returned. For descriptions about how to formatValuefor different record types, see Supported DNS Resource Record Types in the Amazon Route 53 Developer Guide.You can specify more than one value for all record types except
CNAMEandSOA.If you're creating an alias resource record set, omit
Value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-