Module Values.UpdateDomainRequestSource

Updates the properties of a domain, including creating or selecting a dead letter queue or an encryption key. After a domain is created, the name canโ€™t be changed. Use this API or CreateDomain to enable identity resolution: set Matching to true. To prevent cross-service impersonation when you call this API, see Cross-service confused deputy prevention for sample policies that you should apply. To add or remove tags on an existing Domain, see TagResource/UntagResource.

Sourcetype nonrec t = {
  1. domainName : Name.t;
    (*

    The unique name of the domain.

    *)
  2. defaultExpirationDays : ExpirationDaysInteger.t option;
    (*

    The default number of days until the data within the domain expires.

    *)
  3. defaultEncryptionKey : EncryptionKey.t option;
    (*

    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. If specified as an empty string, it will clear any existing value.

    *)
  4. deadLetterQueueUrl : SqsQueueUrl.t option;
    (*

    The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications. If specified as an empty string, it will clear any existing value. You must set up a policy on the DeadLetterQueue for the SendMessage operation to enable Amazon Connect Customer Profiles to send messages to the DeadLetterQueue.

    *)
  5. matching : MatchingRequest.t option;
    (*

    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 ExportingConfig in the MatchingRequest, you can download the results from S3.

    *)
  6. ruleBasedMatching : RuleBasedMatchingRequest.t option;
    (*

    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 the RuleBasedMatchingRequest. You can use the ListRuleBasedMatches and GetSimilarProfiles API to return and review the results. Also, if you have configured ExportingConfig in the RuleBasedMatchingRequest, you can download the results from S3.

    *)
  7. dataStore : DataStoreRequest.t option;
    (*

    Set to true to enabled data store for this domain.

    *)
  8. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?defaultExpirationDays:??? -> ?defaultEncryptionKey:??? -> ?deadLetterQueueUrl:??? -> ?matching:??? -> ?ruleBasedMatching:??? -> ?dataStore:??? -> ?tags:??? -> domainName:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ExpirationDaysInteger.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.t | `Structure of (string * [> `Boolean of OptionalBoolean.t | `Integer of MaxAllowedRuleLevelForMerging.t | `List of [> `Structure of (string * [> `List of [> `String of String1To255.t ] list ]) list ] list | `Structure of (string * [> `Boolean of OptionalBoolean.t | `Double of Double0To1.t | `Enum of string | `List of [> `String of String1To255.t ] list | `String of JobScheduleTime.t | `Structure of (string * [> `Enum of string | `List of [> `List of [> `String of String1To255.t ] list ] list | `String of String1To255.t ]) list ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t