Interface UpdateDomainResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<UpdateDomainResponse.Builder,UpdateDomainResponse>,CustomerProfilesResponse.Builder,SdkBuilder<UpdateDomainResponse.Builder,UpdateDomainResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateDomainResponse
public static interface UpdateDomainResponse.Builder extends CustomerProfilesResponse.Builder, SdkPojo, CopyableBuilder<UpdateDomainResponse.Builder,UpdateDomainResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateDomainResponse.BuildercreatedAt(Instant createdAt)The timestamp of when the domain was created.UpdateDomainResponse.BuilderdeadLetterQueueUrl(String deadLetterQueueUrl)The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications.UpdateDomainResponse.BuilderdefaultEncryptionKey(String defaultEncryptionKey)The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified.UpdateDomainResponse.BuilderdefaultExpirationDays(Integer defaultExpirationDays)The default number of days until the data within the domain expires.UpdateDomainResponse.BuilderdomainName(String domainName)The unique name of the domain.UpdateDomainResponse.BuilderlastUpdatedAt(Instant lastUpdatedAt)The timestamp of when the domain was most recently edited.default UpdateDomainResponse.Buildermatching(Consumer<MatchingResponse.Builder> matching)The process of matching duplicate profiles.UpdateDomainResponse.Buildermatching(MatchingResponse matching)The process of matching duplicate profiles.default UpdateDomainResponse.BuilderruleBasedMatching(Consumer<RuleBasedMatchingResponse.Builder> ruleBasedMatching)The process of matching duplicate profiles using the rule-Based matching.UpdateDomainResponse.BuilderruleBasedMatching(RuleBasedMatchingResponse ruleBasedMatching)The process of matching duplicate profiles using the rule-Based matching.UpdateDomainResponse.Buildertags(Map<String,String> tags)The tags used to organize, track, or control access for this resource.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.customerprofiles.model.CustomerProfilesResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
domainName
UpdateDomainResponse.Builder domainName(String domainName)
The unique name of the domain.
- Parameters:
domainName- The unique name of the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultExpirationDays
UpdateDomainResponse.Builder defaultExpirationDays(Integer defaultExpirationDays)
The default number of days until the data within the domain expires.
- Parameters:
defaultExpirationDays- The default number of days until the data within the domain expires.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultEncryptionKey
UpdateDomainResponse.Builder defaultEncryptionKey(String defaultEncryptionKey)
The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified. It is used to encrypt all data before it is placed in permanent or semi-permanent storage.
- Parameters:
defaultEncryptionKey- The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified. It is used to encrypt all data before it is placed in permanent or semi-permanent storage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deadLetterQueueUrl
UpdateDomainResponse.Builder deadLetterQueueUrl(String deadLetterQueueUrl)
The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications.
- Parameters:
deadLetterQueueUrl- The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
matching
UpdateDomainResponse.Builder matching(MatchingResponse matching)
The process of matching duplicate profiles. If
Matching=true, Amazon Connect Customer Profiles starts a weekly batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every Saturday at 12AM UTC to detect duplicate profiles in your domains.After the Identity Resolution Job completes, use the GetMatches API to return and review the results. Or, if you have configured
ExportingConfigin theMatchingRequest, you can download the results from S3.- Parameters:
matching- The process of matching duplicate profiles. IfMatching=true, Amazon Connect Customer Profiles starts a weekly batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every Saturday at 12AM UTC to detect duplicate profiles in your domains.After the Identity Resolution Job completes, use the GetMatches API to return and review the results. Or, if you have configured
ExportingConfigin theMatchingRequest, you can download the results from S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
matching
default UpdateDomainResponse.Builder matching(Consumer<MatchingResponse.Builder> matching)
The process of matching duplicate profiles. If
Matching=true, Amazon Connect Customer Profiles starts a weekly batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every Saturday at 12AM UTC to detect duplicate profiles in your domains.After the Identity Resolution Job completes, use the GetMatches API to return and review the results. Or, if you have configured
This is a convenience method that creates an instance of theExportingConfigin theMatchingRequest, you can download the results from S3.MatchingResponse.Builderavoiding the need to create one manually viaMatchingResponse.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomatching(MatchingResponse).- Parameters:
matching- a consumer that will call methods onMatchingResponse.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
matching(MatchingResponse)
-
ruleBasedMatching
UpdateDomainResponse.Builder ruleBasedMatching(RuleBasedMatchingResponse ruleBasedMatching)
The process of matching duplicate profiles using the rule-Based matching. If
RuleBasedMatching= true, Amazon Connect Customer Profiles will start to match and merge your profiles according to your configuration in theRuleBasedMatchingRequest. You can use theListRuleBasedMatchesandGetSimilarProfilesAPI to return and review the results. Also, if you have configuredExportingConfigin theRuleBasedMatchingRequest, you can download the results from S3.- Parameters:
ruleBasedMatching- The process of matching duplicate profiles using the rule-Based matching. IfRuleBasedMatching= true, Amazon Connect Customer Profiles will start to match and merge your profiles according to your configuration in theRuleBasedMatchingRequest. You can use theListRuleBasedMatchesandGetSimilarProfilesAPI to return and review the results. Also, if you have configuredExportingConfigin theRuleBasedMatchingRequest, you can download the results from S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ruleBasedMatching
default UpdateDomainResponse.Builder ruleBasedMatching(Consumer<RuleBasedMatchingResponse.Builder> ruleBasedMatching)
The process of matching duplicate profiles using the rule-Based matching. If
This is a convenience method that creates an instance of theRuleBasedMatching= true, Amazon Connect Customer Profiles will start to match and merge your profiles according to your configuration in theRuleBasedMatchingRequest. You can use theListRuleBasedMatchesandGetSimilarProfilesAPI to return and review the results. Also, if you have configuredExportingConfigin theRuleBasedMatchingRequest, you can download the results from S3.RuleBasedMatchingResponse.Builderavoiding the need to create one manually viaRuleBasedMatchingResponse.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toruleBasedMatching(RuleBasedMatchingResponse).- Parameters:
ruleBasedMatching- a consumer that will call methods onRuleBasedMatchingResponse.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ruleBasedMatching(RuleBasedMatchingResponse)
-
createdAt
UpdateDomainResponse.Builder createdAt(Instant createdAt)
The timestamp of when the domain was created.
- Parameters:
createdAt- The timestamp of when the domain was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedAt
UpdateDomainResponse.Builder lastUpdatedAt(Instant lastUpdatedAt)
The timestamp of when the domain was most recently edited.
- Parameters:
lastUpdatedAt- The timestamp of when the domain was most recently edited.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
UpdateDomainResponse.Builder tags(Map<String,String> tags)
The tags used to organize, track, or control access for this resource.
- Parameters:
tags- The tags used to organize, track, or control access for this resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-