Interface VerifyDnsConfigurationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFrontResponse.Builder,CopyableBuilder<VerifyDnsConfigurationResponse.Builder,VerifyDnsConfigurationResponse>,SdkBuilder<VerifyDnsConfigurationResponse.Builder,VerifyDnsConfigurationResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- VerifyDnsConfigurationResponse
@Mutable @NotThreadSafe public static interface VerifyDnsConfigurationResponse.Builder extends CloudFrontResponse.Builder, SdkPojo, CopyableBuilder<VerifyDnsConfigurationResponse.Builder,VerifyDnsConfigurationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VerifyDnsConfigurationResponse.BuilderdnsConfigurationList(Collection<DnsConfiguration> dnsConfigurationList)The list of domain names, their statuses, and a description of each status.VerifyDnsConfigurationResponse.BuilderdnsConfigurationList(Consumer<DnsConfiguration.Builder>... dnsConfigurationList)The list of domain names, their statuses, and a description of each status.VerifyDnsConfigurationResponse.BuilderdnsConfigurationList(DnsConfiguration... dnsConfigurationList)The list of domain names, their statuses, and a description of each status.-
Methods inherited from interface software.amazon.awssdk.services.cloudfront.model.CloudFrontResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
dnsConfigurationList
VerifyDnsConfigurationResponse.Builder dnsConfigurationList(Collection<DnsConfiguration> dnsConfigurationList)
The list of domain names, their statuses, and a description of each status.
- Parameters:
dnsConfigurationList- The list of domain names, their statuses, and a description of each status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dnsConfigurationList
VerifyDnsConfigurationResponse.Builder dnsConfigurationList(DnsConfiguration... dnsConfigurationList)
The list of domain names, their statuses, and a description of each status.
- Parameters:
dnsConfigurationList- The list of domain names, their statuses, and a description of each status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dnsConfigurationList
VerifyDnsConfigurationResponse.Builder dnsConfigurationList(Consumer<DnsConfiguration.Builder>... dnsConfigurationList)
The list of domain names, their statuses, and a description of each status.
This is a convenience method that creates an instance of theDnsConfiguration.Builderavoiding the need to create one manually viaDnsConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dnsConfigurationList(List.) - Parameters:
dnsConfigurationList- a consumer that will call methods onDnsConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dnsConfigurationList(java.util.Collection)
-
-