Interface PrivateDnsRecordSet.UpdateStages.WithTxtRecordTextValue
-
- All Known Subinterfaces:
PrivateDnsRecordSet.UpdateCombined,PrivateDnsRecordSet.UpdateTxtRecordSet
- Enclosing interface:
- PrivateDnsRecordSet.UpdateStages
public static interface PrivateDnsRecordSet.UpdateStages.WithTxtRecordTextValueThe stage of the Txt record definition allowing to add or remove TXT record.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PrivateDnsRecordSet.UpdateTxtRecordSetwithoutText(String text)Removes a Txt record with the given text from this record set.PrivateDnsRecordSet.UpdateTxtRecordSetwithoutText(List<String> textChunks)Removes a Txt record with the given text (split into 255 char chunks) from this record set.PrivateDnsRecordSet.UpdateTxtRecordSetwithText(String text)Creates a Txt record with the given text in this record set.
-
-
-
Method Detail
-
withText
PrivateDnsRecordSet.UpdateTxtRecordSet withText(String text)
Creates a Txt record with the given text in this record set.- Parameters:
text- the text value- Returns:
- the next stage of the record set update
-
withoutText
PrivateDnsRecordSet.UpdateTxtRecordSet withoutText(String text)
Removes a Txt record with the given text from this record set.- Parameters:
text- the text value- Returns:
- the next stage of the record set update
-
withoutText
PrivateDnsRecordSet.UpdateTxtRecordSet withoutText(List<String> textChunks)
Removes a Txt record with the given text (split into 255 char chunks) from this record set.- Parameters:
textChunks- the text value as list- Returns:
- the next stage of the record set update
-
-