Liking cljdoc? Tell your friends :D
Clojure only.

cdk.api.services.cognito

Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.cognito package.

Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.cognito package. 
raw docstring

account-recoveryclj

(account-recovery config id item-key)

The account-recovery function data interprets values in the provided config data into a AccountRecovery instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of AccountRecovery - the value is returned.
  • is :none - AccountRecovery/NONE is returned
  • is :email-only - AccountRecovery/EMAIL_ONLY is returned
  • is :phone-only-without-mfa - AccountRecovery/PHONE_ONLY_WITHOUT_MFA is returned
  • is :phone-without-mfa-and-email - AccountRecovery/PHONE_WITHOUT_MFA_AND_EMAIL is returned
  • is :phone-and-email - AccountRecovery/PHONE_AND_EMAIL is returned
  • is :email-and-phone-without-mfa - AccountRecovery/EMAIL_AND_PHONE_WITHOUT_MFA is returned

If a value is not found or matches the above criteria, nil is returned.

The `account-recovery` function data interprets values in the provided config data into a 
`AccountRecovery` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `AccountRecovery` - the value is returned.
* is `:none` - `AccountRecovery/NONE` is returned
* is `:email-only` - `AccountRecovery/EMAIL_ONLY` is returned
* is `:phone-only-without-mfa` - `AccountRecovery/PHONE_ONLY_WITHOUT_MFA` is returned
* is `:phone-without-mfa-and-email` - `AccountRecovery/PHONE_WITHOUT_MFA_AND_EMAIL` is returned
* is `:phone-and-email` - `AccountRecovery/PHONE_AND_EMAIL` is returned
* is `:email-and-phone-without-mfa` - `AccountRecovery/EMAIL_AND_PHONE_WITHOUT_MFA` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

advanced-security-modeclj

(advanced-security-mode config id item-key)

The advanced-security-mode function data interprets values in the provided config data into a AdvancedSecurityMode instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of AdvancedSecurityMode - the value is returned.
  • is :off - AdvancedSecurityMode/OFF is returned
  • is :audit - AdvancedSecurityMode/AUDIT is returned
  • is :enforced - AdvancedSecurityMode/ENFORCED is returned

If a value is not found or matches the above criteria, nil is returned.

The `advanced-security-mode` function data interprets values in the provided config data into a 
`AdvancedSecurityMode` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `AdvancedSecurityMode` - the value is returned.
* is `:off` - `AdvancedSecurityMode/OFF` is returned
* is `:audit` - `AdvancedSecurityMode/AUDIT` is returned
* is `:enforced` - `AdvancedSecurityMode/ENFORCED` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

attribute-mapping-builderclj

(attribute-mapping-builder id config)

Creates a AttributeMapping$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `AttributeMapping$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

auth-flow-builderclj

(auth-flow-builder id config)

Creates a AuthFlow$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `AuthFlow$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

auto-verified-attrs-builderclj

(auto-verified-attrs-builder id config)

Creates a AutoVerifiedAttrs$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `AutoVerifiedAttrs$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

base-url-options-builderclj

(base-url-options-builder id config)

Creates a BaseUrlOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `BaseUrlOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

boolean-attribute-builderclj

(boolean-attribute-builder id config)

Creates a BooleanAttribute$Builder instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `BooleanAttribute$Builder` instance using a no-argument create, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

build-attribute-mapping-builderclj

(build-attribute-mapping-builder builder id config)

The build-attribute-mapping-builder function updates a AttributeMapping$Builder instance using the provided configuration. The function takes the AttributeMapping$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
addresssoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:address
birthdatesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:birthdate
customjava.util.Mapcdk.support/lookup-entry:custom
emailsoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:email
familyNamesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:family-name
fullnamesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:fullname
gendersoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:gender
givenNamesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:given-name
lastUpdateTimesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:last-update-time
localesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:locale
middleNamesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:middle-name
nicknamesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:nickname
phoneNumbersoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:phone-number
preferredUsernamesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:preferred-username
profilePagesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:profile-page
profilePicturesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:profile-picture
timezonesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:timezone
websitesoftware.amazon.awscdk.services.cognito.ProviderAttributecdk.support/lookup-entry:website
The build-attribute-mapping-builder function updates a AttributeMapping$Builder instance using the provided configuration.
  The function takes the AttributeMapping$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `address` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:address` |
| `birthdate` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:birthdate` |
| `custom` | java.util.Map | [[cdk.support/lookup-entry]] | `:custom` |
| `email` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:email` |
| `familyName` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:family-name` |
| `fullname` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:fullname` |
| `gender` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:gender` |
| `givenName` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:given-name` |
| `lastUpdateTime` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:last-update-time` |
| `locale` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:locale` |
| `middleName` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:middle-name` |
| `nickname` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:nickname` |
| `phoneNumber` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:phone-number` |
| `preferredUsername` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:preferred-username` |
| `profilePage` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:profile-page` |
| `profilePicture` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:profile-picture` |
| `timezone` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:timezone` |
| `website` | software.amazon.awscdk.services.cognito.ProviderAttribute | [[cdk.support/lookup-entry]] | `:website` |
sourceraw docstring

build-auth-flow-builderclj

(build-auth-flow-builder builder id config)

The build-auth-flow-builder function updates a AuthFlow$Builder instance using the provided configuration. The function takes the AuthFlow$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
adminUserPasswordjava.lang.Booleancdk.support/lookup-entry:admin-user-password
customjava.lang.Booleancdk.support/lookup-entry:custom
userPasswordjava.lang.Booleancdk.support/lookup-entry:user-password
userSrpjava.lang.Booleancdk.support/lookup-entry:user-srp
The build-auth-flow-builder function updates a AuthFlow$Builder instance using the provided configuration.
  The function takes the AuthFlow$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `adminUserPassword` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:admin-user-password` |
| `custom` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:custom` |
| `userPassword` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:user-password` |
| `userSrp` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:user-srp` |
sourceraw docstring

build-auto-verified-attrs-builderclj

(build-auto-verified-attrs-builder builder id config)

The build-auto-verified-attrs-builder function updates a AutoVerifiedAttrs$Builder instance using the provided configuration. The function takes the AutoVerifiedAttrs$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
emailjava.lang.Booleancdk.support/lookup-entry:email
phonejava.lang.Booleancdk.support/lookup-entry:phone
The build-auto-verified-attrs-builder function updates a AutoVerifiedAttrs$Builder instance using the provided configuration.
  The function takes the AutoVerifiedAttrs$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `email` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:email` |
| `phone` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:phone` |
sourceraw docstring

build-base-url-options-builderclj

(build-base-url-options-builder builder id config)

The build-base-url-options-builder function updates a BaseUrlOptions$Builder instance using the provided configuration. The function takes the BaseUrlOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
fipsjava.lang.Booleancdk.support/lookup-entry:fips
The build-base-url-options-builder function updates a BaseUrlOptions$Builder instance using the provided configuration.
  The function takes the BaseUrlOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `fips` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:fips` |
sourceraw docstring

build-boolean-attribute-builderclj

(build-boolean-attribute-builder builder id config)

The build-boolean-attribute-builder function updates a BooleanAttribute$Builder instance using the provided configuration. The function takes the BooleanAttribute$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
mutablejava.lang.Booleancdk.support/lookup-entry:mutable
The build-boolean-attribute-builder function updates a BooleanAttribute$Builder instance using the provided configuration.
  The function takes the BooleanAttribute$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `mutable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:mutable` |
sourceraw docstring

build-cfn-identity-pool-builderclj

(build-cfn-identity-pool-builder builder id config)

The build-cfn-identity-pool-builder function updates a CfnIdentityPool$Builder instance using the provided configuration. The function takes the CfnIdentityPool$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
allowClassicFlowjava.lang.Booleancdk.support/lookup-entry:allow-classic-flow
allowUnauthenticatedIdentitiesjava.lang.Booleancdk.support/lookup-entry:allow-unauthenticated-identities
cognitoEventsjava.lang.Objectcdk.support/lookup-entry:cognito-events
cognitoIdentityProvidersjava.util.Listcdk.support/lookup-entry:cognito-identity-providers
cognitoStreamssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:cognito-streams
developerProviderNamejava.lang.Stringcdk.support/lookup-entry:developer-provider-name
identityPoolNamejava.lang.Stringcdk.support/lookup-entry:identity-pool-name
openIdConnectProviderArnsjava.util.Listcdk.support/lookup-entry:open-id-connect-provider-arns
pushSyncsoftware.amazon.awscdk.services.cognito.CfnIdentityPool$PushSyncPropertycdk.support/lookup-entry:push-sync
samlProviderArnsjava.util.Listcdk.support/lookup-entry:saml-provider-arns
supportedLoginProvidersjava.lang.Objectcdk.support/lookup-entry:supported-login-providers
The build-cfn-identity-pool-builder function updates a CfnIdentityPool$Builder instance using the provided configuration.
  The function takes the CfnIdentityPool$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `allowClassicFlow` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-classic-flow` |
| `allowUnauthenticatedIdentities` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-unauthenticated-identities` |
| `cognitoEvents` | java.lang.Object | [[cdk.support/lookup-entry]] | `:cognito-events` |
| `cognitoIdentityProviders` | java.util.List | [[cdk.support/lookup-entry]] | `:cognito-identity-providers` |
| `cognitoStreams` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:cognito-streams` |
| `developerProviderName` | java.lang.String | [[cdk.support/lookup-entry]] | `:developer-provider-name` |
| `identityPoolName` | java.lang.String | [[cdk.support/lookup-entry]] | `:identity-pool-name` |
| `openIdConnectProviderArns` | java.util.List | [[cdk.support/lookup-entry]] | `:open-id-connect-provider-arns` |
| `pushSync` | software.amazon.awscdk.services.cognito.CfnIdentityPool$PushSyncProperty | [[cdk.support/lookup-entry]] | `:push-sync` |
| `samlProviderArns` | java.util.List | [[cdk.support/lookup-entry]] | `:saml-provider-arns` |
| `supportedLoginProviders` | java.lang.Object | [[cdk.support/lookup-entry]] | `:supported-login-providers` |
sourceraw docstring

build-cfn-identity-pool-cognito-identity-provider-property-builderclj

(build-cfn-identity-pool-cognito-identity-provider-property-builder builder
                                                                    id
                                                                    config)

The build-cfn-identity-pool-cognito-identity-provider-property-builder function updates a CfnIdentityPool$CognitoIdentityProviderProperty$Builder instance using the provided configuration. The function takes the CfnIdentityPool$CognitoIdentityProviderProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
providerNamejava.lang.Stringcdk.support/lookup-entry:provider-name
serverSideTokenChecksoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:server-side-token-check
The build-cfn-identity-pool-cognito-identity-provider-property-builder function updates a CfnIdentityPool$CognitoIdentityProviderProperty$Builder instance using the provided configuration.
  The function takes the CfnIdentityPool$CognitoIdentityProviderProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `providerName` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider-name` |
| `serverSideTokenCheck` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:server-side-token-check` |
sourceraw docstring

build-cfn-identity-pool-cognito-streams-property-builderclj

(build-cfn-identity-pool-cognito-streams-property-builder builder id config)

The build-cfn-identity-pool-cognito-streams-property-builder function updates a CfnIdentityPool$CognitoStreamsProperty$Builder instance using the provided configuration. The function takes the CfnIdentityPool$CognitoStreamsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
roleArnjava.lang.Stringcdk.support/lookup-entry:role-arn
streamNamejava.lang.Stringcdk.support/lookup-entry:stream-name
streamingStatusjava.lang.Stringcdk.support/lookup-entry:streaming-status
The build-cfn-identity-pool-cognito-streams-property-builder function updates a CfnIdentityPool$CognitoStreamsProperty$Builder instance using the provided configuration.
  The function takes the CfnIdentityPool$CognitoStreamsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` |
| `streamName` | java.lang.String | [[cdk.support/lookup-entry]] | `:stream-name` |
| `streamingStatus` | java.lang.String | [[cdk.support/lookup-entry]] | `:streaming-status` |
sourceraw docstring

build-cfn-identity-pool-principal-tag-builderclj

(build-cfn-identity-pool-principal-tag-builder builder id config)

The build-cfn-identity-pool-principal-tag-builder function updates a CfnIdentityPoolPrincipalTag$Builder instance using the provided configuration. The function takes the CfnIdentityPoolPrincipalTag$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
identityPoolIdjava.lang.Stringcdk.support/lookup-entry:identity-pool-id
identityProviderNamejava.lang.Stringcdk.support/lookup-entry:identity-provider-name
principalTagsjava.lang.Objectcdk.support/lookup-entry:principal-tags
useDefaultssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:use-defaults
The build-cfn-identity-pool-principal-tag-builder function updates a CfnIdentityPoolPrincipalTag$Builder instance using the provided configuration.
  The function takes the CfnIdentityPoolPrincipalTag$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `identityPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:identity-pool-id` |
| `identityProviderName` | java.lang.String | [[cdk.support/lookup-entry]] | `:identity-provider-name` |
| `principalTags` | java.lang.Object | [[cdk.support/lookup-entry]] | `:principal-tags` |
| `useDefaults` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:use-defaults` |
sourceraw docstring

build-cfn-identity-pool-principal-tag-props-builderclj

(build-cfn-identity-pool-principal-tag-props-builder builder id config)

The build-cfn-identity-pool-principal-tag-props-builder function updates a CfnIdentityPoolPrincipalTagProps$Builder instance using the provided configuration. The function takes the CfnIdentityPoolPrincipalTagProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
identityPoolIdjava.lang.Stringcdk.support/lookup-entry:identity-pool-id
identityProviderNamejava.lang.Stringcdk.support/lookup-entry:identity-provider-name
principalTagsjava.lang.Objectcdk.support/lookup-entry:principal-tags
useDefaultsjava.lang.Booleancdk.support/lookup-entry:use-defaults
The build-cfn-identity-pool-principal-tag-props-builder function updates a CfnIdentityPoolPrincipalTagProps$Builder instance using the provided configuration.
  The function takes the CfnIdentityPoolPrincipalTagProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `identityPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:identity-pool-id` |
| `identityProviderName` | java.lang.String | [[cdk.support/lookup-entry]] | `:identity-provider-name` |
| `principalTags` | java.lang.Object | [[cdk.support/lookup-entry]] | `:principal-tags` |
| `useDefaults` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:use-defaults` |
sourceraw docstring

build-cfn-identity-pool-props-builderclj

(build-cfn-identity-pool-props-builder builder id config)

The build-cfn-identity-pool-props-builder function updates a CfnIdentityPoolProps$Builder instance using the provided configuration. The function takes the CfnIdentityPoolProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
allowClassicFlowjava.lang.Booleancdk.support/lookup-entry:allow-classic-flow
allowUnauthenticatedIdentitiessoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:allow-unauthenticated-identities
cognitoEventsjava.lang.Objectcdk.support/lookup-entry:cognito-events
cognitoIdentityProviderssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:cognito-identity-providers
cognitoStreamssoftware.amazon.awscdk.services.cognito.CfnIdentityPool$CognitoStreamsPropertycdk.support/lookup-entry:cognito-streams
developerProviderNamejava.lang.Stringcdk.support/lookup-entry:developer-provider-name
identityPoolNamejava.lang.Stringcdk.support/lookup-entry:identity-pool-name
openIdConnectProviderArnsjava.util.Listcdk.support/lookup-entry:open-id-connect-provider-arns
pushSyncsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:push-sync
samlProviderArnsjava.util.Listcdk.support/lookup-entry:saml-provider-arns
supportedLoginProvidersjava.lang.Objectcdk.support/lookup-entry:supported-login-providers
The build-cfn-identity-pool-props-builder function updates a CfnIdentityPoolProps$Builder instance using the provided configuration.
  The function takes the CfnIdentityPoolProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `allowClassicFlow` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allow-classic-flow` |
| `allowUnauthenticatedIdentities` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:allow-unauthenticated-identities` |
| `cognitoEvents` | java.lang.Object | [[cdk.support/lookup-entry]] | `:cognito-events` |
| `cognitoIdentityProviders` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:cognito-identity-providers` |
| `cognitoStreams` | software.amazon.awscdk.services.cognito.CfnIdentityPool$CognitoStreamsProperty | [[cdk.support/lookup-entry]] | `:cognito-streams` |
| `developerProviderName` | java.lang.String | [[cdk.support/lookup-entry]] | `:developer-provider-name` |
| `identityPoolName` | java.lang.String | [[cdk.support/lookup-entry]] | `:identity-pool-name` |
| `openIdConnectProviderArns` | java.util.List | [[cdk.support/lookup-entry]] | `:open-id-connect-provider-arns` |
| `pushSync` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:push-sync` |
| `samlProviderArns` | java.util.List | [[cdk.support/lookup-entry]] | `:saml-provider-arns` |
| `supportedLoginProviders` | java.lang.Object | [[cdk.support/lookup-entry]] | `:supported-login-providers` |
sourceraw docstring

build-cfn-identity-pool-push-sync-property-builderclj

(build-cfn-identity-pool-push-sync-property-builder builder id config)

The build-cfn-identity-pool-push-sync-property-builder function updates a CfnIdentityPool$PushSyncProperty$Builder instance using the provided configuration. The function takes the CfnIdentityPool$PushSyncProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationArnsjava.util.Listcdk.support/lookup-entry:application-arns
roleArnjava.lang.Stringcdk.support/lookup-entry:role-arn
The build-cfn-identity-pool-push-sync-property-builder function updates a CfnIdentityPool$PushSyncProperty$Builder instance using the provided configuration.
  The function takes the CfnIdentityPool$PushSyncProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationArns` | java.util.List | [[cdk.support/lookup-entry]] | `:application-arns` |
| `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` |
sourceraw docstring

build-cfn-identity-pool-role-attachment-builderclj

(build-cfn-identity-pool-role-attachment-builder builder id config)

The build-cfn-identity-pool-role-attachment-builder function updates a CfnIdentityPoolRoleAttachment$Builder instance using the provided configuration. The function takes the CfnIdentityPoolRoleAttachment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
identityPoolIdjava.lang.Stringcdk.support/lookup-entry:identity-pool-id
roleMappingssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:role-mappings
rolesjava.lang.Objectcdk.support/lookup-entry:roles
The build-cfn-identity-pool-role-attachment-builder function updates a CfnIdentityPoolRoleAttachment$Builder instance using the provided configuration.
  The function takes the CfnIdentityPoolRoleAttachment$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `identityPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:identity-pool-id` |
| `roleMappings` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:role-mappings` |
| `roles` | java.lang.Object | [[cdk.support/lookup-entry]] | `:roles` |
sourceraw docstring

build-cfn-identity-pool-role-attachment-mapping-rule-property-builderclj

(build-cfn-identity-pool-role-attachment-mapping-rule-property-builder builder
                                                                       id
                                                                       config)

The build-cfn-identity-pool-role-attachment-mapping-rule-property-builder function updates a CfnIdentityPoolRoleAttachment$MappingRuleProperty$Builder instance using the provided configuration. The function takes the CfnIdentityPoolRoleAttachment$MappingRuleProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
claimjava.lang.Stringcdk.support/lookup-entry:claim
matchTypejava.lang.Stringcdk.support/lookup-entry:match-type
roleArnjava.lang.Stringcdk.support/lookup-entry:role-arn
valuejava.lang.Stringcdk.support/lookup-entry:value
The build-cfn-identity-pool-role-attachment-mapping-rule-property-builder function updates a CfnIdentityPoolRoleAttachment$MappingRuleProperty$Builder instance using the provided configuration.
  The function takes the CfnIdentityPoolRoleAttachment$MappingRuleProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `claim` | java.lang.String | [[cdk.support/lookup-entry]] | `:claim` |
| `matchType` | java.lang.String | [[cdk.support/lookup-entry]] | `:match-type` |
| `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` |
| `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` |
sourceraw docstring

build-cfn-identity-pool-role-attachment-props-builderclj

(build-cfn-identity-pool-role-attachment-props-builder builder id config)

The build-cfn-identity-pool-role-attachment-props-builder function updates a CfnIdentityPoolRoleAttachmentProps$Builder instance using the provided configuration. The function takes the CfnIdentityPoolRoleAttachmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
identityPoolIdjava.lang.Stringcdk.support/lookup-entry:identity-pool-id
roleMappingsjava.util.Mapcdk.support/lookup-entry:role-mappings
rolesjava.lang.Objectcdk.support/lookup-entry:roles
The build-cfn-identity-pool-role-attachment-props-builder function updates a CfnIdentityPoolRoleAttachmentProps$Builder instance using the provided configuration.
  The function takes the CfnIdentityPoolRoleAttachmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `identityPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:identity-pool-id` |
| `roleMappings` | java.util.Map | [[cdk.support/lookup-entry]] | `:role-mappings` |
| `roles` | java.lang.Object | [[cdk.support/lookup-entry]] | `:roles` |
sourceraw docstring

build-cfn-identity-pool-role-attachment-role-mapping-property-builderclj

(build-cfn-identity-pool-role-attachment-role-mapping-property-builder builder
                                                                       id
                                                                       config)

The build-cfn-identity-pool-role-attachment-role-mapping-property-builder function updates a CfnIdentityPoolRoleAttachment$RoleMappingProperty$Builder instance using the provided configuration. The function takes the CfnIdentityPoolRoleAttachment$RoleMappingProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
ambiguousRoleResolutionjava.lang.Stringcdk.support/lookup-entry:ambiguous-role-resolution
identityProviderjava.lang.Stringcdk.support/lookup-entry:identity-provider
rulesConfigurationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:rules-configuration
typejava.lang.Stringcdk.support/lookup-entry:type
The build-cfn-identity-pool-role-attachment-role-mapping-property-builder function updates a CfnIdentityPoolRoleAttachment$RoleMappingProperty$Builder instance using the provided configuration.
  The function takes the CfnIdentityPoolRoleAttachment$RoleMappingProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `ambiguousRoleResolution` | java.lang.String | [[cdk.support/lookup-entry]] | `:ambiguous-role-resolution` |
| `identityProvider` | java.lang.String | [[cdk.support/lookup-entry]] | `:identity-provider` |
| `rulesConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:rules-configuration` |
| `type` | java.lang.String | [[cdk.support/lookup-entry]] | `:type` |
sourceraw docstring

build-cfn-identity-pool-role-attachment-rules-configuration-type-property-builderclj

(build-cfn-identity-pool-role-attachment-rules-configuration-type-property-builder
  builder
  id
  config)

The build-cfn-identity-pool-role-attachment-rules-configuration-type-property-builder function updates a CfnIdentityPoolRoleAttachment$RulesConfigurationTypeProperty$Builder instance using the provided configuration. The function takes the CfnIdentityPoolRoleAttachment$RulesConfigurationTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
rulessoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:rules
The build-cfn-identity-pool-role-attachment-rules-configuration-type-property-builder function updates a CfnIdentityPoolRoleAttachment$RulesConfigurationTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnIdentityPoolRoleAttachment$RulesConfigurationTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `rules` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:rules` |
sourceraw docstring

build-cfn-log-delivery-configuration-builderclj

(build-cfn-log-delivery-configuration-builder builder id config)

The build-cfn-log-delivery-configuration-builder function updates a CfnLogDeliveryConfiguration$Builder instance using the provided configuration. The function takes the CfnLogDeliveryConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
logConfigurationsjava.util.Listcdk.support/lookup-entry:log-configurations
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-log-delivery-configuration-builder function updates a CfnLogDeliveryConfiguration$Builder instance using the provided configuration.
  The function takes the CfnLogDeliveryConfiguration$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `logConfigurations` | java.util.List | [[cdk.support/lookup-entry]] | `:log-configurations` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-log-delivery-configuration-cloud-watch-logs-configuration-property-builderclj

(build-cfn-log-delivery-configuration-cloud-watch-logs-configuration-property-builder
  builder
  id
  config)

The build-cfn-log-delivery-configuration-cloud-watch-logs-configuration-property-builder function updates a CfnLogDeliveryConfiguration$CloudWatchLogsConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnLogDeliveryConfiguration$CloudWatchLogsConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
logGroupArnjava.lang.Stringcdk.support/lookup-entry:log-group-arn
The build-cfn-log-delivery-configuration-cloud-watch-logs-configuration-property-builder function updates a CfnLogDeliveryConfiguration$CloudWatchLogsConfigurationProperty$Builder instance using the provided configuration.
  The function takes the CfnLogDeliveryConfiguration$CloudWatchLogsConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `logGroupArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-group-arn` |
sourceraw docstring

build-cfn-log-delivery-configuration-log-configuration-property-builderclj

(build-cfn-log-delivery-configuration-log-configuration-property-builder builder
                                                                         id
                                                                         config)

The build-cfn-log-delivery-configuration-log-configuration-property-builder function updates a CfnLogDeliveryConfiguration$LogConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnLogDeliveryConfiguration$LogConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
cloudWatchLogsConfigurationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:cloud-watch-logs-configuration
eventSourcejava.lang.Stringcdk.support/lookup-entry:event-source
logLeveljava.lang.Stringcdk.support/lookup-entry:log-level
The build-cfn-log-delivery-configuration-log-configuration-property-builder function updates a CfnLogDeliveryConfiguration$LogConfigurationProperty$Builder instance using the provided configuration.
  The function takes the CfnLogDeliveryConfiguration$LogConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `cloudWatchLogsConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:cloud-watch-logs-configuration` |
| `eventSource` | java.lang.String | [[cdk.support/lookup-entry]] | `:event-source` |
| `logLevel` | java.lang.String | [[cdk.support/lookup-entry]] | `:log-level` |
sourceraw docstring

build-cfn-log-delivery-configuration-props-builderclj

(build-cfn-log-delivery-configuration-props-builder builder id config)

The build-cfn-log-delivery-configuration-props-builder function updates a CfnLogDeliveryConfigurationProps$Builder instance using the provided configuration. The function takes the CfnLogDeliveryConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
logConfigurationssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:log-configurations
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-log-delivery-configuration-props-builder function updates a CfnLogDeliveryConfigurationProps$Builder instance using the provided configuration.
  The function takes the CfnLogDeliveryConfigurationProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `logConfigurations` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:log-configurations` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-account-recovery-setting-property-builderclj

(build-cfn-user-pool-account-recovery-setting-property-builder builder
                                                               id
                                                               config)

The build-cfn-user-pool-account-recovery-setting-property-builder function updates a CfnUserPool$AccountRecoverySettingProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$AccountRecoverySettingProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
recoveryMechanismssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:recovery-mechanisms
The build-cfn-user-pool-account-recovery-setting-property-builder function updates a CfnUserPool$AccountRecoverySettingProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$AccountRecoverySettingProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `recoveryMechanisms` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:recovery-mechanisms` |
sourceraw docstring

build-cfn-user-pool-admin-create-user-config-property-builderclj

(build-cfn-user-pool-admin-create-user-config-property-builder builder
                                                               id
                                                               config)

The build-cfn-user-pool-admin-create-user-config-property-builder function updates a CfnUserPool$AdminCreateUserConfigProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$AdminCreateUserConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
allowAdminCreateUserOnlysoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:allow-admin-create-user-only
inviteMessageTemplatesoftware.amazon.awscdk.services.cognito.CfnUserPool$InviteMessageTemplatePropertycdk.support/lookup-entry:invite-message-template
unusedAccountValidityDaysjava.lang.Numbercdk.support/lookup-entry:unused-account-validity-days
The build-cfn-user-pool-admin-create-user-config-property-builder function updates a CfnUserPool$AdminCreateUserConfigProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$AdminCreateUserConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `allowAdminCreateUserOnly` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:allow-admin-create-user-only` |
| `inviteMessageTemplate` | software.amazon.awscdk.services.cognito.CfnUserPool$InviteMessageTemplateProperty | [[cdk.support/lookup-entry]] | `:invite-message-template` |
| `unusedAccountValidityDays` | java.lang.Number | [[cdk.support/lookup-entry]] | `:unused-account-validity-days` |
sourceraw docstring

build-cfn-user-pool-builderclj

(build-cfn-user-pool-builder builder id config)

The build-cfn-user-pool-builder function updates a CfnUserPool$Builder instance using the provided configuration. The function takes the CfnUserPool$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accountRecoverySettingsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:account-recovery-setting
adminCreateUserConfigsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:admin-create-user-config
aliasAttributesjava.util.Listcdk.support/lookup-entry:alias-attributes
autoVerifiedAttributesjava.util.Listcdk.support/lookup-entry:auto-verified-attributes
deletionProtectionjava.lang.Stringcdk.support/lookup-entry:deletion-protection
deviceConfigurationsoftware.amazon.awscdk.services.cognito.CfnUserPool$DeviceConfigurationPropertycdk.support/lookup-entry:device-configuration
emailConfigurationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:email-configuration
emailVerificationMessagejava.lang.Stringcdk.support/lookup-entry:email-verification-message
emailVerificationSubjectjava.lang.Stringcdk.support/lookup-entry:email-verification-subject
enabledMfasjava.util.Listcdk.support/lookup-entry:enabled-mfas
lambdaConfigsoftware.amazon.awscdk.services.cognito.CfnUserPool$LambdaConfigPropertycdk.support/lookup-entry:lambda-config
mfaConfigurationjava.lang.Stringcdk.support/lookup-entry:mfa-configuration
policiessoftware.amazon.awscdk.services.cognito.CfnUserPool$PoliciesPropertycdk.support/lookup-entry:policies
schemajava.util.Listcdk.support/lookup-entry:schema
smsAuthenticationMessagejava.lang.Stringcdk.support/lookup-entry:sms-authentication-message
smsConfigurationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:sms-configuration
smsVerificationMessagejava.lang.Stringcdk.support/lookup-entry:sms-verification-message
userAttributeUpdateSettingssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:user-attribute-update-settings
userPoolAddOnssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:user-pool-add-ons
userPoolNamejava.lang.Stringcdk.support/lookup-entry:user-pool-name
userPoolTagsjava.lang.Objectcdk.support/lookup-entry:user-pool-tags
usernameAttributesjava.util.Listcdk.support/lookup-entry:username-attributes
usernameConfigurationsoftware.amazon.awscdk.services.cognito.CfnUserPool$UsernameConfigurationPropertycdk.support/lookup-entry:username-configuration
verificationMessageTemplatesoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:verification-message-template
The build-cfn-user-pool-builder function updates a CfnUserPool$Builder instance using the provided configuration.
  The function takes the CfnUserPool$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accountRecoverySetting` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:account-recovery-setting` |
| `adminCreateUserConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:admin-create-user-config` |
| `aliasAttributes` | java.util.List | [[cdk.support/lookup-entry]] | `:alias-attributes` |
| `autoVerifiedAttributes` | java.util.List | [[cdk.support/lookup-entry]] | `:auto-verified-attributes` |
| `deletionProtection` | java.lang.String | [[cdk.support/lookup-entry]] | `:deletion-protection` |
| `deviceConfiguration` | software.amazon.awscdk.services.cognito.CfnUserPool$DeviceConfigurationProperty | [[cdk.support/lookup-entry]] | `:device-configuration` |
| `emailConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:email-configuration` |
| `emailVerificationMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-verification-message` |
| `emailVerificationSubject` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-verification-subject` |
| `enabledMfas` | java.util.List | [[cdk.support/lookup-entry]] | `:enabled-mfas` |
| `lambdaConfig` | software.amazon.awscdk.services.cognito.CfnUserPool$LambdaConfigProperty | [[cdk.support/lookup-entry]] | `:lambda-config` |
| `mfaConfiguration` | java.lang.String | [[cdk.support/lookup-entry]] | `:mfa-configuration` |
| `policies` | software.amazon.awscdk.services.cognito.CfnUserPool$PoliciesProperty | [[cdk.support/lookup-entry]] | `:policies` |
| `schema` | java.util.List | [[cdk.support/lookup-entry]] | `:schema` |
| `smsAuthenticationMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:sms-authentication-message` |
| `smsConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:sms-configuration` |
| `smsVerificationMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:sms-verification-message` |
| `userAttributeUpdateSettings` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:user-attribute-update-settings` |
| `userPoolAddOns` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:user-pool-add-ons` |
| `userPoolName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-name` |
| `userPoolTags` | java.lang.Object | [[cdk.support/lookup-entry]] | `:user-pool-tags` |
| `usernameAttributes` | java.util.List | [[cdk.support/lookup-entry]] | `:username-attributes` |
| `usernameConfiguration` | software.amazon.awscdk.services.cognito.CfnUserPool$UsernameConfigurationProperty | [[cdk.support/lookup-entry]] | `:username-configuration` |
| `verificationMessageTemplate` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:verification-message-template` |
sourceraw docstring

build-cfn-user-pool-client-analytics-configuration-property-builderclj

(build-cfn-user-pool-client-analytics-configuration-property-builder builder
                                                                     id
                                                                     config)

The build-cfn-user-pool-client-analytics-configuration-property-builder function updates a CfnUserPoolClient$AnalyticsConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolClient$AnalyticsConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
applicationArnjava.lang.Stringcdk.support/lookup-entry:application-arn
applicationIdjava.lang.Stringcdk.support/lookup-entry:application-id
externalIdjava.lang.Stringcdk.support/lookup-entry:external-id
roleArnjava.lang.Stringcdk.support/lookup-entry:role-arn
userDataSharedsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:user-data-shared
The build-cfn-user-pool-client-analytics-configuration-property-builder function updates a CfnUserPoolClient$AnalyticsConfigurationProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolClient$AnalyticsConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `applicationArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-arn` |
| `applicationId` | java.lang.String | [[cdk.support/lookup-entry]] | `:application-id` |
| `externalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:external-id` |
| `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` |
| `userDataShared` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:user-data-shared` |
sourceraw docstring

build-cfn-user-pool-client-builderclj

(build-cfn-user-pool-client-builder builder id config)

The build-cfn-user-pool-client-builder function updates a CfnUserPoolClient$Builder instance using the provided configuration. The function takes the CfnUserPoolClient$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accessTokenValidityjava.lang.Numbercdk.support/lookup-entry:access-token-validity
allowedOAuthFlowsjava.util.Listcdk.support/lookup-entry:allowed-o-auth-flows
allowedOAuthFlowsUserPoolClientjava.lang.Booleancdk.support/lookup-entry:allowed-o-auth-flows-user-pool-client
allowedOAuthScopesjava.util.Listcdk.support/lookup-entry:allowed-o-auth-scopes
analyticsConfigurationsoftware.amazon.awscdk.services.cognito.CfnUserPoolClient$AnalyticsConfigurationPropertycdk.support/lookup-entry:analytics-configuration
authSessionValidityjava.lang.Numbercdk.support/lookup-entry:auth-session-validity
callbackUrLsjava.util.Listcdk.support/lookup-entry:callback-ur-ls
clientNamejava.lang.Stringcdk.support/lookup-entry:client-name
defaultRedirectUrijava.lang.Stringcdk.support/lookup-entry:default-redirect-uri
enablePropagateAdditionalUserContextDatasoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:enable-propagate-additional-user-context-data
enableTokenRevocationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:enable-token-revocation
explicitAuthFlowsjava.util.Listcdk.support/lookup-entry:explicit-auth-flows
generateSecretjava.lang.Booleancdk.support/lookup-entry:generate-secret
idTokenValidityjava.lang.Numbercdk.support/lookup-entry:id-token-validity
logoutUrLsjava.util.Listcdk.support/lookup-entry:logout-ur-ls
preventUserExistenceErrorsjava.lang.Stringcdk.support/lookup-entry:prevent-user-existence-errors
readAttributesjava.util.Listcdk.support/lookup-entry:read-attributes
refreshTokenValidityjava.lang.Numbercdk.support/lookup-entry:refresh-token-validity
supportedIdentityProvidersjava.util.Listcdk.support/lookup-entry:supported-identity-providers
tokenValidityUnitssoftware.amazon.awscdk.services.cognito.CfnUserPoolClient$TokenValidityUnitsPropertycdk.support/lookup-entry:token-validity-units
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
writeAttributesjava.util.Listcdk.support/lookup-entry:write-attributes
The build-cfn-user-pool-client-builder function updates a CfnUserPoolClient$Builder instance using the provided configuration.
  The function takes the CfnUserPoolClient$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accessTokenValidity` | java.lang.Number | [[cdk.support/lookup-entry]] | `:access-token-validity` |
| `allowedOAuthFlows` | java.util.List | [[cdk.support/lookup-entry]] | `:allowed-o-auth-flows` |
| `allowedOAuthFlowsUserPoolClient` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allowed-o-auth-flows-user-pool-client` |
| `allowedOAuthScopes` | java.util.List | [[cdk.support/lookup-entry]] | `:allowed-o-auth-scopes` |
| `analyticsConfiguration` | software.amazon.awscdk.services.cognito.CfnUserPoolClient$AnalyticsConfigurationProperty | [[cdk.support/lookup-entry]] | `:analytics-configuration` |
| `authSessionValidity` | java.lang.Number | [[cdk.support/lookup-entry]] | `:auth-session-validity` |
| `callbackUrLs` | java.util.List | [[cdk.support/lookup-entry]] | `:callback-ur-ls` |
| `clientName` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-name` |
| `defaultRedirectUri` | java.lang.String | [[cdk.support/lookup-entry]] | `:default-redirect-uri` |
| `enablePropagateAdditionalUserContextData` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:enable-propagate-additional-user-context-data` |
| `enableTokenRevocation` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:enable-token-revocation` |
| `explicitAuthFlows` | java.util.List | [[cdk.support/lookup-entry]] | `:explicit-auth-flows` |
| `generateSecret` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:generate-secret` |
| `idTokenValidity` | java.lang.Number | [[cdk.support/lookup-entry]] | `:id-token-validity` |
| `logoutUrLs` | java.util.List | [[cdk.support/lookup-entry]] | `:logout-ur-ls` |
| `preventUserExistenceErrors` | java.lang.String | [[cdk.support/lookup-entry]] | `:prevent-user-existence-errors` |
| `readAttributes` | java.util.List | [[cdk.support/lookup-entry]] | `:read-attributes` |
| `refreshTokenValidity` | java.lang.Number | [[cdk.support/lookup-entry]] | `:refresh-token-validity` |
| `supportedIdentityProviders` | java.util.List | [[cdk.support/lookup-entry]] | `:supported-identity-providers` |
| `tokenValidityUnits` | software.amazon.awscdk.services.cognito.CfnUserPoolClient$TokenValidityUnitsProperty | [[cdk.support/lookup-entry]] | `:token-validity-units` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
| `writeAttributes` | java.util.List | [[cdk.support/lookup-entry]] | `:write-attributes` |
sourceraw docstring

build-cfn-user-pool-client-props-builderclj

(build-cfn-user-pool-client-props-builder builder id config)

The build-cfn-user-pool-client-props-builder function updates a CfnUserPoolClientProps$Builder instance using the provided configuration. The function takes the CfnUserPoolClientProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accessTokenValidityjava.lang.Numbercdk.support/lookup-entry:access-token-validity
allowedOAuthFlowsjava.util.Listcdk.support/lookup-entry:allowed-o-auth-flows
allowedOAuthFlowsUserPoolClientjava.lang.Booleancdk.support/lookup-entry:allowed-o-auth-flows-user-pool-client
allowedOAuthScopesjava.util.Listcdk.support/lookup-entry:allowed-o-auth-scopes
analyticsConfigurationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:analytics-configuration
authSessionValidityjava.lang.Numbercdk.support/lookup-entry:auth-session-validity
callbackUrLsjava.util.Listcdk.support/lookup-entry:callback-ur-ls
clientNamejava.lang.Stringcdk.support/lookup-entry:client-name
defaultRedirectUrijava.lang.Stringcdk.support/lookup-entry:default-redirect-uri
enablePropagateAdditionalUserContextDatajava.lang.Booleancdk.support/lookup-entry:enable-propagate-additional-user-context-data
enableTokenRevocationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:enable-token-revocation
explicitAuthFlowsjava.util.Listcdk.support/lookup-entry:explicit-auth-flows
generateSecretjava.lang.Booleancdk.support/lookup-entry:generate-secret
idTokenValidityjava.lang.Numbercdk.support/lookup-entry:id-token-validity
logoutUrLsjava.util.Listcdk.support/lookup-entry:logout-ur-ls
preventUserExistenceErrorsjava.lang.Stringcdk.support/lookup-entry:prevent-user-existence-errors
readAttributesjava.util.Listcdk.support/lookup-entry:read-attributes
refreshTokenValidityjava.lang.Numbercdk.support/lookup-entry:refresh-token-validity
supportedIdentityProvidersjava.util.Listcdk.support/lookup-entry:supported-identity-providers
tokenValidityUnitssoftware.amazon.awscdk.services.cognito.CfnUserPoolClient$TokenValidityUnitsPropertycdk.support/lookup-entry:token-validity-units
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
writeAttributesjava.util.Listcdk.support/lookup-entry:write-attributes
The build-cfn-user-pool-client-props-builder function updates a CfnUserPoolClientProps$Builder instance using the provided configuration.
  The function takes the CfnUserPoolClientProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accessTokenValidity` | java.lang.Number | [[cdk.support/lookup-entry]] | `:access-token-validity` |
| `allowedOAuthFlows` | java.util.List | [[cdk.support/lookup-entry]] | `:allowed-o-auth-flows` |
| `allowedOAuthFlowsUserPoolClient` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:allowed-o-auth-flows-user-pool-client` |
| `allowedOAuthScopes` | java.util.List | [[cdk.support/lookup-entry]] | `:allowed-o-auth-scopes` |
| `analyticsConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:analytics-configuration` |
| `authSessionValidity` | java.lang.Number | [[cdk.support/lookup-entry]] | `:auth-session-validity` |
| `callbackUrLs` | java.util.List | [[cdk.support/lookup-entry]] | `:callback-ur-ls` |
| `clientName` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-name` |
| `defaultRedirectUri` | java.lang.String | [[cdk.support/lookup-entry]] | `:default-redirect-uri` |
| `enablePropagateAdditionalUserContextData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-propagate-additional-user-context-data` |
| `enableTokenRevocation` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:enable-token-revocation` |
| `explicitAuthFlows` | java.util.List | [[cdk.support/lookup-entry]] | `:explicit-auth-flows` |
| `generateSecret` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:generate-secret` |
| `idTokenValidity` | java.lang.Number | [[cdk.support/lookup-entry]] | `:id-token-validity` |
| `logoutUrLs` | java.util.List | [[cdk.support/lookup-entry]] | `:logout-ur-ls` |
| `preventUserExistenceErrors` | java.lang.String | [[cdk.support/lookup-entry]] | `:prevent-user-existence-errors` |
| `readAttributes` | java.util.List | [[cdk.support/lookup-entry]] | `:read-attributes` |
| `refreshTokenValidity` | java.lang.Number | [[cdk.support/lookup-entry]] | `:refresh-token-validity` |
| `supportedIdentityProviders` | java.util.List | [[cdk.support/lookup-entry]] | `:supported-identity-providers` |
| `tokenValidityUnits` | software.amazon.awscdk.services.cognito.CfnUserPoolClient$TokenValidityUnitsProperty | [[cdk.support/lookup-entry]] | `:token-validity-units` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
| `writeAttributes` | java.util.List | [[cdk.support/lookup-entry]] | `:write-attributes` |
sourceraw docstring

build-cfn-user-pool-client-token-validity-units-property-builderclj

(build-cfn-user-pool-client-token-validity-units-property-builder builder
                                                                  id
                                                                  config)

The build-cfn-user-pool-client-token-validity-units-property-builder function updates a CfnUserPoolClient$TokenValidityUnitsProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolClient$TokenValidityUnitsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accessTokenjava.lang.Stringcdk.support/lookup-entry:access-token
idTokenjava.lang.Stringcdk.support/lookup-entry:id-token
refreshTokenjava.lang.Stringcdk.support/lookup-entry:refresh-token
The build-cfn-user-pool-client-token-validity-units-property-builder function updates a CfnUserPoolClient$TokenValidityUnitsProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolClient$TokenValidityUnitsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accessToken` | java.lang.String | [[cdk.support/lookup-entry]] | `:access-token` |
| `idToken` | java.lang.String | [[cdk.support/lookup-entry]] | `:id-token` |
| `refreshToken` | java.lang.String | [[cdk.support/lookup-entry]] | `:refresh-token` |
sourceraw docstring

build-cfn-user-pool-custom-email-sender-property-builderclj

(build-cfn-user-pool-custom-email-sender-property-builder builder id config)

The build-cfn-user-pool-custom-email-sender-property-builder function updates a CfnUserPool$CustomEmailSenderProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$CustomEmailSenderProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
lambdaArnjava.lang.Stringcdk.support/lookup-entry:lambda-arn
lambdaVersionjava.lang.Stringcdk.support/lookup-entry:lambda-version
The build-cfn-user-pool-custom-email-sender-property-builder function updates a CfnUserPool$CustomEmailSenderProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$CustomEmailSenderProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `lambdaArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:lambda-arn` |
| `lambdaVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:lambda-version` |
sourceraw docstring

build-cfn-user-pool-custom-sms-sender-property-builderclj

(build-cfn-user-pool-custom-sms-sender-property-builder builder id config)

The build-cfn-user-pool-custom-sms-sender-property-builder function updates a CfnUserPool$CustomSMSSenderProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$CustomSMSSenderProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
lambdaArnjava.lang.Stringcdk.support/lookup-entry:lambda-arn
lambdaVersionjava.lang.Stringcdk.support/lookup-entry:lambda-version
The build-cfn-user-pool-custom-sms-sender-property-builder function updates a CfnUserPool$CustomSMSSenderProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$CustomSMSSenderProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `lambdaArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:lambda-arn` |
| `lambdaVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:lambda-version` |
sourceraw docstring

build-cfn-user-pool-device-configuration-property-builderclj

(build-cfn-user-pool-device-configuration-property-builder builder id config)

The build-cfn-user-pool-device-configuration-property-builder function updates a CfnUserPool$DeviceConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$DeviceConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
challengeRequiredOnNewDevicesoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:challenge-required-on-new-device
deviceOnlyRememberedOnUserPromptjava.lang.Booleancdk.support/lookup-entry:device-only-remembered-on-user-prompt
The build-cfn-user-pool-device-configuration-property-builder function updates a CfnUserPool$DeviceConfigurationProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$DeviceConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `challengeRequiredOnNewDevice` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:challenge-required-on-new-device` |
| `deviceOnlyRememberedOnUserPrompt` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:device-only-remembered-on-user-prompt` |
sourceraw docstring

build-cfn-user-pool-domain-builderclj

(build-cfn-user-pool-domain-builder builder id config)

The build-cfn-user-pool-domain-builder function updates a CfnUserPoolDomain$Builder instance using the provided configuration. The function takes the CfnUserPoolDomain$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
customDomainConfigsoftware.amazon.awscdk.services.cognito.CfnUserPoolDomain$CustomDomainConfigTypePropertycdk.support/lookup-entry:custom-domain-config
domainjava.lang.Stringcdk.support/lookup-entry:domain
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-domain-builder function updates a CfnUserPoolDomain$Builder instance using the provided configuration.
  The function takes the CfnUserPoolDomain$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `customDomainConfig` | software.amazon.awscdk.services.cognito.CfnUserPoolDomain$CustomDomainConfigTypeProperty | [[cdk.support/lookup-entry]] | `:custom-domain-config` |
| `domain` | java.lang.String | [[cdk.support/lookup-entry]] | `:domain` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-domain-custom-domain-config-type-property-builderclj

(build-cfn-user-pool-domain-custom-domain-config-type-property-builder builder
                                                                       id
                                                                       config)

The build-cfn-user-pool-domain-custom-domain-config-type-property-builder function updates a CfnUserPoolDomain$CustomDomainConfigTypeProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolDomain$CustomDomainConfigTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
certificateArnjava.lang.Stringcdk.support/lookup-entry:certificate-arn
The build-cfn-user-pool-domain-custom-domain-config-type-property-builder function updates a CfnUserPoolDomain$CustomDomainConfigTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolDomain$CustomDomainConfigTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `certificateArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:certificate-arn` |
sourceraw docstring

build-cfn-user-pool-domain-props-builderclj

(build-cfn-user-pool-domain-props-builder builder id config)

The build-cfn-user-pool-domain-props-builder function updates a CfnUserPoolDomainProps$Builder instance using the provided configuration. The function takes the CfnUserPoolDomainProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
customDomainConfigsoftware.amazon.awscdk.services.cognito.CfnUserPoolDomain$CustomDomainConfigTypePropertycdk.support/lookup-entry:custom-domain-config
domainjava.lang.Stringcdk.support/lookup-entry:domain
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-domain-props-builder function updates a CfnUserPoolDomainProps$Builder instance using the provided configuration.
  The function takes the CfnUserPoolDomainProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `customDomainConfig` | software.amazon.awscdk.services.cognito.CfnUserPoolDomain$CustomDomainConfigTypeProperty | [[cdk.support/lookup-entry]] | `:custom-domain-config` |
| `domain` | java.lang.String | [[cdk.support/lookup-entry]] | `:domain` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-email-configuration-property-builderclj

(build-cfn-user-pool-email-configuration-property-builder builder id config)

The build-cfn-user-pool-email-configuration-property-builder function updates a CfnUserPool$EmailConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$EmailConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
configurationSetjava.lang.Stringcdk.support/lookup-entry:configuration-set
emailSendingAccountjava.lang.Stringcdk.support/lookup-entry:email-sending-account
fromjava.lang.Stringcdk.support/lookup-entry:from
replyToEmailAddressjava.lang.Stringcdk.support/lookup-entry:reply-to-email-address
sourceArnjava.lang.Stringcdk.support/lookup-entry:source-arn
The build-cfn-user-pool-email-configuration-property-builder function updates a CfnUserPool$EmailConfigurationProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$EmailConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `configurationSet` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-set` |
| `emailSendingAccount` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-sending-account` |
| `from` | java.lang.String | [[cdk.support/lookup-entry]] | `:from` |
| `replyToEmailAddress` | java.lang.String | [[cdk.support/lookup-entry]] | `:reply-to-email-address` |
| `sourceArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-arn` |
sourceraw docstring

build-cfn-user-pool-group-builderclj

(build-cfn-user-pool-group-builder builder id config)

The build-cfn-user-pool-group-builder function updates a CfnUserPoolGroup$Builder instance using the provided configuration. The function takes the CfnUserPoolGroup$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
descriptionjava.lang.Stringcdk.support/lookup-entry:description
groupNamejava.lang.Stringcdk.support/lookup-entry:group-name
precedencejava.lang.Numbercdk.support/lookup-entry:precedence
roleArnjava.lang.Stringcdk.support/lookup-entry:role-arn
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-group-builder function updates a CfnUserPoolGroup$Builder instance using the provided configuration.
  The function takes the CfnUserPoolGroup$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` |
| `precedence` | java.lang.Number | [[cdk.support/lookup-entry]] | `:precedence` |
| `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-group-props-builderclj

(build-cfn-user-pool-group-props-builder builder id config)

The build-cfn-user-pool-group-props-builder function updates a CfnUserPoolGroupProps$Builder instance using the provided configuration. The function takes the CfnUserPoolGroupProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
descriptionjava.lang.Stringcdk.support/lookup-entry:description
groupNamejava.lang.Stringcdk.support/lookup-entry:group-name
precedencejava.lang.Numbercdk.support/lookup-entry:precedence
roleArnjava.lang.Stringcdk.support/lookup-entry:role-arn
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-group-props-builder function updates a CfnUserPoolGroupProps$Builder instance using the provided configuration.
  The function takes the CfnUserPoolGroupProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
| `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` |
| `precedence` | java.lang.Number | [[cdk.support/lookup-entry]] | `:precedence` |
| `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-identity-provider-builderclj

(build-cfn-user-pool-identity-provider-builder builder id config)

The build-cfn-user-pool-identity-provider-builder function updates a CfnUserPoolIdentityProvider$Builder instance using the provided configuration. The function takes the CfnUserPoolIdentityProvider$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingjava.lang.Objectcdk.support/lookup-entry:attribute-mapping
idpIdentifiersjava.util.Listcdk.support/lookup-entry:idp-identifiers
providerDetailsjava.lang.Objectcdk.support/lookup-entry:provider-details
providerNamejava.lang.Stringcdk.support/lookup-entry:provider-name
providerTypejava.lang.Stringcdk.support/lookup-entry:provider-type
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-identity-provider-builder function updates a CfnUserPoolIdentityProvider$Builder instance using the provided configuration.
  The function takes the CfnUserPoolIdentityProvider$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | java.lang.Object | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `idpIdentifiers` | java.util.List | [[cdk.support/lookup-entry]] | `:idp-identifiers` |
| `providerDetails` | java.lang.Object | [[cdk.support/lookup-entry]] | `:provider-details` |
| `providerName` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider-name` |
| `providerType` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider-type` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-identity-provider-props-builderclj

(build-cfn-user-pool-identity-provider-props-builder builder id config)

The build-cfn-user-pool-identity-provider-props-builder function updates a CfnUserPoolIdentityProviderProps$Builder instance using the provided configuration. The function takes the CfnUserPoolIdentityProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingjava.lang.Objectcdk.support/lookup-entry:attribute-mapping
idpIdentifiersjava.util.Listcdk.support/lookup-entry:idp-identifiers
providerDetailsjava.lang.Objectcdk.support/lookup-entry:provider-details
providerNamejava.lang.Stringcdk.support/lookup-entry:provider-name
providerTypejava.lang.Stringcdk.support/lookup-entry:provider-type
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-identity-provider-props-builder function updates a CfnUserPoolIdentityProviderProps$Builder instance using the provided configuration.
  The function takes the CfnUserPoolIdentityProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | java.lang.Object | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `idpIdentifiers` | java.util.List | [[cdk.support/lookup-entry]] | `:idp-identifiers` |
| `providerDetails` | java.lang.Object | [[cdk.support/lookup-entry]] | `:provider-details` |
| `providerName` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider-name` |
| `providerType` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider-type` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-invite-message-template-property-builderclj

(build-cfn-user-pool-invite-message-template-property-builder builder id config)

The build-cfn-user-pool-invite-message-template-property-builder function updates a CfnUserPool$InviteMessageTemplateProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$InviteMessageTemplateProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
emailMessagejava.lang.Stringcdk.support/lookup-entry:email-message
emailSubjectjava.lang.Stringcdk.support/lookup-entry:email-subject
smsMessagejava.lang.Stringcdk.support/lookup-entry:sms-message
The build-cfn-user-pool-invite-message-template-property-builder function updates a CfnUserPool$InviteMessageTemplateProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$InviteMessageTemplateProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `emailMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-message` |
| `emailSubject` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-subject` |
| `smsMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:sms-message` |
sourceraw docstring

build-cfn-user-pool-lambda-config-property-builderclj

(build-cfn-user-pool-lambda-config-property-builder builder id config)

The build-cfn-user-pool-lambda-config-property-builder function updates a CfnUserPool$LambdaConfigProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$LambdaConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
createAuthChallengejava.lang.Stringcdk.support/lookup-entry:create-auth-challenge
customEmailSendersoftware.amazon.awscdk.services.cognito.CfnUserPool$CustomEmailSenderPropertycdk.support/lookup-entry:custom-email-sender
customMessagejava.lang.Stringcdk.support/lookup-entry:custom-message
customSmsSendersoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:custom-sms-sender
defineAuthChallengejava.lang.Stringcdk.support/lookup-entry:define-auth-challenge
kmsKeyIdjava.lang.Stringcdk.support/lookup-entry:kms-key-id
postAuthenticationjava.lang.Stringcdk.support/lookup-entry:post-authentication
postConfirmationjava.lang.Stringcdk.support/lookup-entry:post-confirmation
preAuthenticationjava.lang.Stringcdk.support/lookup-entry:pre-authentication
preSignUpjava.lang.Stringcdk.support/lookup-entry:pre-sign-up
preTokenGenerationjava.lang.Stringcdk.support/lookup-entry:pre-token-generation
preTokenGenerationConfigsoftware.amazon.awscdk.services.cognito.CfnUserPool$PreTokenGenerationConfigPropertycdk.support/lookup-entry:pre-token-generation-config
userMigrationjava.lang.Stringcdk.support/lookup-entry:user-migration
verifyAuthChallengeResponsejava.lang.Stringcdk.support/lookup-entry:verify-auth-challenge-response
The build-cfn-user-pool-lambda-config-property-builder function updates a CfnUserPool$LambdaConfigProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$LambdaConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `createAuthChallenge` | java.lang.String | [[cdk.support/lookup-entry]] | `:create-auth-challenge` |
| `customEmailSender` | software.amazon.awscdk.services.cognito.CfnUserPool$CustomEmailSenderProperty | [[cdk.support/lookup-entry]] | `:custom-email-sender` |
| `customMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:custom-message` |
| `customSmsSender` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:custom-sms-sender` |
| `defineAuthChallenge` | java.lang.String | [[cdk.support/lookup-entry]] | `:define-auth-challenge` |
| `kmsKeyId` | java.lang.String | [[cdk.support/lookup-entry]] | `:kms-key-id` |
| `postAuthentication` | java.lang.String | [[cdk.support/lookup-entry]] | `:post-authentication` |
| `postConfirmation` | java.lang.String | [[cdk.support/lookup-entry]] | `:post-confirmation` |
| `preAuthentication` | java.lang.String | [[cdk.support/lookup-entry]] | `:pre-authentication` |
| `preSignUp` | java.lang.String | [[cdk.support/lookup-entry]] | `:pre-sign-up` |
| `preTokenGeneration` | java.lang.String | [[cdk.support/lookup-entry]] | `:pre-token-generation` |
| `preTokenGenerationConfig` | software.amazon.awscdk.services.cognito.CfnUserPool$PreTokenGenerationConfigProperty | [[cdk.support/lookup-entry]] | `:pre-token-generation-config` |
| `userMigration` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-migration` |
| `verifyAuthChallengeResponse` | java.lang.String | [[cdk.support/lookup-entry]] | `:verify-auth-challenge-response` |
sourceraw docstring

build-cfn-user-pool-number-attribute-constraints-property-builderclj

(build-cfn-user-pool-number-attribute-constraints-property-builder builder
                                                                   id
                                                                   config)

The build-cfn-user-pool-number-attribute-constraints-property-builder function updates a CfnUserPool$NumberAttributeConstraintsProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$NumberAttributeConstraintsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
maxValuejava.lang.Stringcdk.support/lookup-entry:max-value
minValuejava.lang.Stringcdk.support/lookup-entry:min-value
The build-cfn-user-pool-number-attribute-constraints-property-builder function updates a CfnUserPool$NumberAttributeConstraintsProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$NumberAttributeConstraintsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `maxValue` | java.lang.String | [[cdk.support/lookup-entry]] | `:max-value` |
| `minValue` | java.lang.String | [[cdk.support/lookup-entry]] | `:min-value` |
sourceraw docstring

build-cfn-user-pool-password-policy-property-builderclj

(build-cfn-user-pool-password-policy-property-builder builder id config)

The build-cfn-user-pool-password-policy-property-builder function updates a CfnUserPool$PasswordPolicyProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$PasswordPolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
minimumLengthjava.lang.Numbercdk.support/lookup-entry:minimum-length
requireLowercasejava.lang.Booleancdk.support/lookup-entry:require-lowercase
requireNumbersjava.lang.Booleancdk.support/lookup-entry:require-numbers
requireSymbolsjava.lang.Booleancdk.support/lookup-entry:require-symbols
requireUppercasejava.lang.Booleancdk.support/lookup-entry:require-uppercase
temporaryPasswordValidityDaysjava.lang.Numbercdk.support/lookup-entry:temporary-password-validity-days
The build-cfn-user-pool-password-policy-property-builder function updates a CfnUserPool$PasswordPolicyProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$PasswordPolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `minimumLength` | java.lang.Number | [[cdk.support/lookup-entry]] | `:minimum-length` |
| `requireLowercase` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:require-lowercase` |
| `requireNumbers` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:require-numbers` |
| `requireSymbols` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:require-symbols` |
| `requireUppercase` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:require-uppercase` |
| `temporaryPasswordValidityDays` | java.lang.Number | [[cdk.support/lookup-entry]] | `:temporary-password-validity-days` |
sourceraw docstring

build-cfn-user-pool-policies-property-builderclj

(build-cfn-user-pool-policies-property-builder builder id config)

The build-cfn-user-pool-policies-property-builder function updates a CfnUserPool$PoliciesProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$PoliciesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
passwordPolicysoftware.amazon.awscdk.services.cognito.CfnUserPool$PasswordPolicyPropertycdk.support/lookup-entry:password-policy
The build-cfn-user-pool-policies-property-builder function updates a CfnUserPool$PoliciesProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$PoliciesProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `passwordPolicy` | software.amazon.awscdk.services.cognito.CfnUserPool$PasswordPolicyProperty | [[cdk.support/lookup-entry]] | `:password-policy` |
sourceraw docstring

build-cfn-user-pool-pre-token-generation-config-property-builderclj

(build-cfn-user-pool-pre-token-generation-config-property-builder builder
                                                                  id
                                                                  config)

The build-cfn-user-pool-pre-token-generation-config-property-builder function updates a CfnUserPool$PreTokenGenerationConfigProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$PreTokenGenerationConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
lambdaArnjava.lang.Stringcdk.support/lookup-entry:lambda-arn
lambdaVersionjava.lang.Stringcdk.support/lookup-entry:lambda-version
The build-cfn-user-pool-pre-token-generation-config-property-builder function updates a CfnUserPool$PreTokenGenerationConfigProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$PreTokenGenerationConfigProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `lambdaArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:lambda-arn` |
| `lambdaVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:lambda-version` |
sourceraw docstring

build-cfn-user-pool-props-builderclj

(build-cfn-user-pool-props-builder builder id config)

The build-cfn-user-pool-props-builder function updates a CfnUserPoolProps$Builder instance using the provided configuration. The function takes the CfnUserPoolProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accountRecoverySettingsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:account-recovery-setting
adminCreateUserConfigsoftware.amazon.awscdk.services.cognito.CfnUserPool$AdminCreateUserConfigPropertycdk.support/lookup-entry:admin-create-user-config
aliasAttributesjava.util.Listcdk.support/lookup-entry:alias-attributes
autoVerifiedAttributesjava.util.Listcdk.support/lookup-entry:auto-verified-attributes
deletionProtectionjava.lang.Stringcdk.support/lookup-entry:deletion-protection
deviceConfigurationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:device-configuration
emailConfigurationsoftware.amazon.awscdk.services.cognito.CfnUserPool$EmailConfigurationPropertycdk.support/lookup-entry:email-configuration
emailVerificationMessagejava.lang.Stringcdk.support/lookup-entry:email-verification-message
emailVerificationSubjectjava.lang.Stringcdk.support/lookup-entry:email-verification-subject
enabledMfasjava.util.Listcdk.support/lookup-entry:enabled-mfas
lambdaConfigsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:lambda-config
mfaConfigurationjava.lang.Stringcdk.support/lookup-entry:mfa-configuration
policiessoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:policies
schemasoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:schema
smsAuthenticationMessagejava.lang.Stringcdk.support/lookup-entry:sms-authentication-message
smsConfigurationsoftware.amazon.awscdk.services.cognito.CfnUserPool$SmsConfigurationPropertycdk.support/lookup-entry:sms-configuration
smsVerificationMessagejava.lang.Stringcdk.support/lookup-entry:sms-verification-message
userAttributeUpdateSettingssoftware.amazon.awscdk.services.cognito.CfnUserPool$UserAttributeUpdateSettingsPropertycdk.support/lookup-entry:user-attribute-update-settings
userPoolAddOnssoftware.amazon.awscdk.services.cognito.CfnUserPool$UserPoolAddOnsPropertycdk.support/lookup-entry:user-pool-add-ons
userPoolNamejava.lang.Stringcdk.support/lookup-entry:user-pool-name
userPoolTagsjava.lang.Objectcdk.support/lookup-entry:user-pool-tags
usernameAttributesjava.util.Listcdk.support/lookup-entry:username-attributes
usernameConfigurationsoftware.amazon.awscdk.services.cognito.CfnUserPool$UsernameConfigurationPropertycdk.support/lookup-entry:username-configuration
verificationMessageTemplatesoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:verification-message-template
The build-cfn-user-pool-props-builder function updates a CfnUserPoolProps$Builder instance using the provided configuration.
  The function takes the CfnUserPoolProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accountRecoverySetting` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:account-recovery-setting` |
| `adminCreateUserConfig` | software.amazon.awscdk.services.cognito.CfnUserPool$AdminCreateUserConfigProperty | [[cdk.support/lookup-entry]] | `:admin-create-user-config` |
| `aliasAttributes` | java.util.List | [[cdk.support/lookup-entry]] | `:alias-attributes` |
| `autoVerifiedAttributes` | java.util.List | [[cdk.support/lookup-entry]] | `:auto-verified-attributes` |
| `deletionProtection` | java.lang.String | [[cdk.support/lookup-entry]] | `:deletion-protection` |
| `deviceConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:device-configuration` |
| `emailConfiguration` | software.amazon.awscdk.services.cognito.CfnUserPool$EmailConfigurationProperty | [[cdk.support/lookup-entry]] | `:email-configuration` |
| `emailVerificationMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-verification-message` |
| `emailVerificationSubject` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-verification-subject` |
| `enabledMfas` | java.util.List | [[cdk.support/lookup-entry]] | `:enabled-mfas` |
| `lambdaConfig` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:lambda-config` |
| `mfaConfiguration` | java.lang.String | [[cdk.support/lookup-entry]] | `:mfa-configuration` |
| `policies` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:policies` |
| `schema` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:schema` |
| `smsAuthenticationMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:sms-authentication-message` |
| `smsConfiguration` | software.amazon.awscdk.services.cognito.CfnUserPool$SmsConfigurationProperty | [[cdk.support/lookup-entry]] | `:sms-configuration` |
| `smsVerificationMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:sms-verification-message` |
| `userAttributeUpdateSettings` | software.amazon.awscdk.services.cognito.CfnUserPool$UserAttributeUpdateSettingsProperty | [[cdk.support/lookup-entry]] | `:user-attribute-update-settings` |
| `userPoolAddOns` | software.amazon.awscdk.services.cognito.CfnUserPool$UserPoolAddOnsProperty | [[cdk.support/lookup-entry]] | `:user-pool-add-ons` |
| `userPoolName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-name` |
| `userPoolTags` | java.lang.Object | [[cdk.support/lookup-entry]] | `:user-pool-tags` |
| `usernameAttributes` | java.util.List | [[cdk.support/lookup-entry]] | `:username-attributes` |
| `usernameConfiguration` | software.amazon.awscdk.services.cognito.CfnUserPool$UsernameConfigurationProperty | [[cdk.support/lookup-entry]] | `:username-configuration` |
| `verificationMessageTemplate` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:verification-message-template` |
sourceraw docstring

build-cfn-user-pool-recovery-option-property-builderclj

(build-cfn-user-pool-recovery-option-property-builder builder id config)

The build-cfn-user-pool-recovery-option-property-builder function updates a CfnUserPool$RecoveryOptionProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$RecoveryOptionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
namejava.lang.Stringcdk.support/lookup-entry:name
priorityjava.lang.Numbercdk.support/lookup-entry:priority
The build-cfn-user-pool-recovery-option-property-builder function updates a CfnUserPool$RecoveryOptionProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$RecoveryOptionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `priority` | java.lang.Number | [[cdk.support/lookup-entry]] | `:priority` |
sourceraw docstring

build-cfn-user-pool-resource-server-builderclj

(build-cfn-user-pool-resource-server-builder builder id config)

The build-cfn-user-pool-resource-server-builder function updates a CfnUserPoolResourceServer$Builder instance using the provided configuration. The function takes the CfnUserPoolResourceServer$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
identifierjava.lang.Stringcdk.support/lookup-entry:identifier
namejava.lang.Stringcdk.support/lookup-entry:name
scopessoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:scopes
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-resource-server-builder function updates a CfnUserPoolResourceServer$Builder instance using the provided configuration.
  The function takes the CfnUserPoolResourceServer$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `identifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:identifier` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `scopes` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-resource-server-props-builderclj

(build-cfn-user-pool-resource-server-props-builder builder id config)

The build-cfn-user-pool-resource-server-props-builder function updates a CfnUserPoolResourceServerProps$Builder instance using the provided configuration. The function takes the CfnUserPoolResourceServerProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
identifierjava.lang.Stringcdk.support/lookup-entry:identifier
namejava.lang.Stringcdk.support/lookup-entry:name
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-resource-server-props-builder function updates a CfnUserPoolResourceServerProps$Builder instance using the provided configuration.
  The function takes the CfnUserPoolResourceServerProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `identifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:identifier` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-resource-server-resource-server-scope-type-property-builderclj

(build-cfn-user-pool-resource-server-resource-server-scope-type-property-builder
  builder
  id
  config)

The build-cfn-user-pool-resource-server-resource-server-scope-type-property-builder function updates a CfnUserPoolResourceServer$ResourceServerScopeTypeProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolResourceServer$ResourceServerScopeTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
scopeDescriptionjava.lang.Stringcdk.support/lookup-entry:scope-description
scopeNamejava.lang.Stringcdk.support/lookup-entry:scope-name
The build-cfn-user-pool-resource-server-resource-server-scope-type-property-builder function updates a CfnUserPoolResourceServer$ResourceServerScopeTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolResourceServer$ResourceServerScopeTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `scopeDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:scope-description` |
| `scopeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:scope-name` |
sourceraw docstring

build-cfn-user-pool-risk-configuration-attachment-account-takeover-action-type-property-builderclj

(build-cfn-user-pool-risk-configuration-attachment-account-takeover-action-type-property-builder
  builder
  id
  config)

The build-cfn-user-pool-risk-configuration-attachment-account-takeover-action-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionTypeProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
eventActionjava.lang.Stringcdk.support/lookup-entry:event-action
notifysoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:notify
The build-cfn-user-pool-risk-configuration-attachment-account-takeover-action-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `eventAction` | java.lang.String | [[cdk.support/lookup-entry]] | `:event-action` |
| `notify` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:notify` |
sourceraw docstring

build-cfn-user-pool-risk-configuration-attachment-account-takeover-actions-type-property-builderclj

(build-cfn-user-pool-risk-configuration-attachment-account-takeover-actions-type-property-builder
  builder
  id
  config)

The build-cfn-user-pool-risk-configuration-attachment-account-takeover-actions-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionsTypeProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionsTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
highActionsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:high-action
lowActionsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:low-action
mediumActionsoftware.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionTypePropertycdk.support/lookup-entry:medium-action
The build-cfn-user-pool-risk-configuration-attachment-account-takeover-actions-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionsTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionsTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `highAction` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:high-action` |
| `lowAction` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:low-action` |
| `mediumAction` | software.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionTypeProperty | [[cdk.support/lookup-entry]] | `:medium-action` |
sourceraw docstring

build-cfn-user-pool-risk-configuration-attachment-account-takeover-risk-configuration-type-property-builderclj

(build-cfn-user-pool-risk-configuration-attachment-account-takeover-risk-configuration-type-property-builder
  builder
  id
  config)

The build-cfn-user-pool-risk-configuration-attachment-account-takeover-risk-configuration-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$AccountTakeoverRiskConfigurationTypeProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolRiskConfigurationAttachment$AccountTakeoverRiskConfigurationTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
actionssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:actions
notifyConfigurationsoftware.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment$NotifyConfigurationTypePropertycdk.support/lookup-entry:notify-configuration
The build-cfn-user-pool-risk-configuration-attachment-account-takeover-risk-configuration-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$AccountTakeoverRiskConfigurationTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolRiskConfigurationAttachment$AccountTakeoverRiskConfigurationTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `actions` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:actions` |
| `notifyConfiguration` | software.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment$NotifyConfigurationTypeProperty | [[cdk.support/lookup-entry]] | `:notify-configuration` |
sourceraw docstring

build-cfn-user-pool-risk-configuration-attachment-builderclj

(build-cfn-user-pool-risk-configuration-attachment-builder builder id config)

The build-cfn-user-pool-risk-configuration-attachment-builder function updates a CfnUserPoolRiskConfigurationAttachment$Builder instance using the provided configuration. The function takes the CfnUserPoolRiskConfigurationAttachment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accountTakeoverRiskConfigurationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:account-takeover-risk-configuration
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
compromisedCredentialsRiskConfigurationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:compromised-credentials-risk-configuration
riskExceptionConfigurationsoftware.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment$RiskExceptionConfigurationTypePropertycdk.support/lookup-entry:risk-exception-configuration
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-risk-configuration-attachment-builder function updates a CfnUserPoolRiskConfigurationAttachment$Builder instance using the provided configuration.
  The function takes the CfnUserPoolRiskConfigurationAttachment$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accountTakeoverRiskConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:account-takeover-risk-configuration` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `compromisedCredentialsRiskConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:compromised-credentials-risk-configuration` |
| `riskExceptionConfiguration` | software.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment$RiskExceptionConfigurationTypeProperty | [[cdk.support/lookup-entry]] | `:risk-exception-configuration` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-risk-configuration-attachment-compromised-credentials-actions-type-property-builderclj

(build-cfn-user-pool-risk-configuration-attachment-compromised-credentials-actions-type-property-builder
  builder
  id
  config)

The build-cfn-user-pool-risk-configuration-attachment-compromised-credentials-actions-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsActionsTypeProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsActionsTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
eventActionjava.lang.Stringcdk.support/lookup-entry:event-action
The build-cfn-user-pool-risk-configuration-attachment-compromised-credentials-actions-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsActionsTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsActionsTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `eventAction` | java.lang.String | [[cdk.support/lookup-entry]] | `:event-action` |
sourceraw docstring

build-cfn-user-pool-risk-configuration-attachment-compromised-credentials-risk-configuration-type-property-builderclj

(build-cfn-user-pool-risk-configuration-attachment-compromised-credentials-risk-configuration-type-property-builder
  builder
  id
  config)

The build-cfn-user-pool-risk-configuration-attachment-compromised-credentials-risk-configuration-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsRiskConfigurationTypeProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsRiskConfigurationTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
actionssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:actions
eventFilterjava.util.Listcdk.support/lookup-entry:event-filter
The build-cfn-user-pool-risk-configuration-attachment-compromised-credentials-risk-configuration-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsRiskConfigurationTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsRiskConfigurationTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `actions` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:actions` |
| `eventFilter` | java.util.List | [[cdk.support/lookup-entry]] | `:event-filter` |
sourceraw docstring

build-cfn-user-pool-risk-configuration-attachment-notify-configuration-type-property-builderclj

(build-cfn-user-pool-risk-configuration-attachment-notify-configuration-type-property-builder
  builder
  id
  config)

The build-cfn-user-pool-risk-configuration-attachment-notify-configuration-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$NotifyConfigurationTypeProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolRiskConfigurationAttachment$NotifyConfigurationTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
blockEmailsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:block-email
fromjava.lang.Stringcdk.support/lookup-entry:from
mfaEmailsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:mfa-email
noActionEmailsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:no-action-email
replyTojava.lang.Stringcdk.support/lookup-entry:reply-to
sourceArnjava.lang.Stringcdk.support/lookup-entry:source-arn
The build-cfn-user-pool-risk-configuration-attachment-notify-configuration-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$NotifyConfigurationTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolRiskConfigurationAttachment$NotifyConfigurationTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `blockEmail` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:block-email` |
| `from` | java.lang.String | [[cdk.support/lookup-entry]] | `:from` |
| `mfaEmail` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:mfa-email` |
| `noActionEmail` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:no-action-email` |
| `replyTo` | java.lang.String | [[cdk.support/lookup-entry]] | `:reply-to` |
| `sourceArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:source-arn` |
sourceraw docstring

build-cfn-user-pool-risk-configuration-attachment-notify-email-type-property-builderclj

(build-cfn-user-pool-risk-configuration-attachment-notify-email-type-property-builder
  builder
  id
  config)

The build-cfn-user-pool-risk-configuration-attachment-notify-email-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$NotifyEmailTypeProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolRiskConfigurationAttachment$NotifyEmailTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
htmlBodyjava.lang.Stringcdk.support/lookup-entry:html-body
subjectjava.lang.Stringcdk.support/lookup-entry:subject
textBodyjava.lang.Stringcdk.support/lookup-entry:text-body
The build-cfn-user-pool-risk-configuration-attachment-notify-email-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$NotifyEmailTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolRiskConfigurationAttachment$NotifyEmailTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `htmlBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:html-body` |
| `subject` | java.lang.String | [[cdk.support/lookup-entry]] | `:subject` |
| `textBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:text-body` |
sourceraw docstring

build-cfn-user-pool-risk-configuration-attachment-props-builderclj

(build-cfn-user-pool-risk-configuration-attachment-props-builder builder
                                                                 id
                                                                 config)

The build-cfn-user-pool-risk-configuration-attachment-props-builder function updates a CfnUserPoolRiskConfigurationAttachmentProps$Builder instance using the provided configuration. The function takes the CfnUserPoolRiskConfigurationAttachmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accountTakeoverRiskConfigurationsoftware.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment$AccountTakeoverRiskConfigurationTypePropertycdk.support/lookup-entry:account-takeover-risk-configuration
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
compromisedCredentialsRiskConfigurationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:compromised-credentials-risk-configuration
riskExceptionConfigurationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:risk-exception-configuration
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-risk-configuration-attachment-props-builder function updates a CfnUserPoolRiskConfigurationAttachmentProps$Builder instance using the provided configuration.
  The function takes the CfnUserPoolRiskConfigurationAttachmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accountTakeoverRiskConfiguration` | software.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment$AccountTakeoverRiskConfigurationTypeProperty | [[cdk.support/lookup-entry]] | `:account-takeover-risk-configuration` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `compromisedCredentialsRiskConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:compromised-credentials-risk-configuration` |
| `riskExceptionConfiguration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:risk-exception-configuration` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-risk-configuration-attachment-risk-exception-configuration-type-property-builderclj

(build-cfn-user-pool-risk-configuration-attachment-risk-exception-configuration-type-property-builder
  builder
  id
  config)

The build-cfn-user-pool-risk-configuration-attachment-risk-exception-configuration-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$RiskExceptionConfigurationTypeProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolRiskConfigurationAttachment$RiskExceptionConfigurationTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
blockedIpRangeListjava.util.Listcdk.support/lookup-entry:blocked-ip-range-list
skippedIpRangeListjava.util.Listcdk.support/lookup-entry:skipped-ip-range-list
The build-cfn-user-pool-risk-configuration-attachment-risk-exception-configuration-type-property-builder function updates a CfnUserPoolRiskConfigurationAttachment$RiskExceptionConfigurationTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolRiskConfigurationAttachment$RiskExceptionConfigurationTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `blockedIpRangeList` | java.util.List | [[cdk.support/lookup-entry]] | `:blocked-ip-range-list` |
| `skippedIpRangeList` | java.util.List | [[cdk.support/lookup-entry]] | `:skipped-ip-range-list` |
sourceraw docstring

build-cfn-user-pool-schema-attribute-property-builderclj

(build-cfn-user-pool-schema-attribute-property-builder builder id config)

The build-cfn-user-pool-schema-attribute-property-builder function updates a CfnUserPool$SchemaAttributeProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$SchemaAttributeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeDataTypejava.lang.Stringcdk.support/lookup-entry:attribute-data-type
developerOnlyAttributesoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:developer-only-attribute
mutablesoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:mutable
namejava.lang.Stringcdk.support/lookup-entry:name
numberAttributeConstraintssoftware.amazon.awscdk.services.cognito.CfnUserPool$NumberAttributeConstraintsPropertycdk.support/lookup-entry:number-attribute-constraints
requiredjava.lang.Booleancdk.support/lookup-entry:required
stringAttributeConstraintssoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:string-attribute-constraints
The build-cfn-user-pool-schema-attribute-property-builder function updates a CfnUserPool$SchemaAttributeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$SchemaAttributeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeDataType` | java.lang.String | [[cdk.support/lookup-entry]] | `:attribute-data-type` |
| `developerOnlyAttribute` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:developer-only-attribute` |
| `mutable` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:mutable` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `numberAttributeConstraints` | software.amazon.awscdk.services.cognito.CfnUserPool$NumberAttributeConstraintsProperty | [[cdk.support/lookup-entry]] | `:number-attribute-constraints` |
| `required` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:required` |
| `stringAttributeConstraints` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:string-attribute-constraints` |
sourceraw docstring

build-cfn-user-pool-sms-configuration-property-builderclj

(build-cfn-user-pool-sms-configuration-property-builder builder id config)

The build-cfn-user-pool-sms-configuration-property-builder function updates a CfnUserPool$SmsConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$SmsConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
externalIdjava.lang.Stringcdk.support/lookup-entry:external-id
snsCallerArnjava.lang.Stringcdk.support/lookup-entry:sns-caller-arn
snsRegionjava.lang.Stringcdk.support/lookup-entry:sns-region
The build-cfn-user-pool-sms-configuration-property-builder function updates a CfnUserPool$SmsConfigurationProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$SmsConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `externalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:external-id` |
| `snsCallerArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:sns-caller-arn` |
| `snsRegion` | java.lang.String | [[cdk.support/lookup-entry]] | `:sns-region` |
sourceraw docstring

build-cfn-user-pool-string-attribute-constraints-property-builderclj

(build-cfn-user-pool-string-attribute-constraints-property-builder builder
                                                                   id
                                                                   config)

The build-cfn-user-pool-string-attribute-constraints-property-builder function updates a CfnUserPool$StringAttributeConstraintsProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$StringAttributeConstraintsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
maxLengthjava.lang.Stringcdk.support/lookup-entry:max-length
minLengthjava.lang.Stringcdk.support/lookup-entry:min-length
The build-cfn-user-pool-string-attribute-constraints-property-builder function updates a CfnUserPool$StringAttributeConstraintsProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$StringAttributeConstraintsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `maxLength` | java.lang.String | [[cdk.support/lookup-entry]] | `:max-length` |
| `minLength` | java.lang.String | [[cdk.support/lookup-entry]] | `:min-length` |
sourceraw docstring

build-cfn-user-pool-ui-customization-attachment-builderclj

(build-cfn-user-pool-ui-customization-attachment-builder builder id config)

The build-cfn-user-pool-ui-customization-attachment-builder function updates a CfnUserPoolUICustomizationAttachment$Builder instance using the provided configuration. The function takes the CfnUserPoolUICustomizationAttachment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
cssjava.lang.Stringcdk.support/lookup-entry:css
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-ui-customization-attachment-builder function updates a CfnUserPoolUICustomizationAttachment$Builder instance using the provided configuration.
  The function takes the CfnUserPoolUICustomizationAttachment$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `css` | java.lang.String | [[cdk.support/lookup-entry]] | `:css` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-ui-customization-attachment-props-builderclj

(build-cfn-user-pool-ui-customization-attachment-props-builder builder
                                                               id
                                                               config)

The build-cfn-user-pool-ui-customization-attachment-props-builder function updates a CfnUserPoolUICustomizationAttachmentProps$Builder instance using the provided configuration. The function takes the CfnUserPoolUICustomizationAttachmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
cssjava.lang.Stringcdk.support/lookup-entry:css
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
The build-cfn-user-pool-ui-customization-attachment-props-builder function updates a CfnUserPoolUICustomizationAttachmentProps$Builder instance using the provided configuration.
  The function takes the CfnUserPoolUICustomizationAttachmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `css` | java.lang.String | [[cdk.support/lookup-entry]] | `:css` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
sourceraw docstring

build-cfn-user-pool-user-attribute-type-property-builderclj

(build-cfn-user-pool-user-attribute-type-property-builder builder id config)

The build-cfn-user-pool-user-attribute-type-property-builder function updates a CfnUserPoolUser$AttributeTypeProperty$Builder instance using the provided configuration. The function takes the CfnUserPoolUser$AttributeTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
namejava.lang.Stringcdk.support/lookup-entry:name
valuejava.lang.Stringcdk.support/lookup-entry:value
The build-cfn-user-pool-user-attribute-type-property-builder function updates a CfnUserPoolUser$AttributeTypeProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPoolUser$AttributeTypeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` |
sourceraw docstring

build-cfn-user-pool-user-attribute-update-settings-property-builderclj

(build-cfn-user-pool-user-attribute-update-settings-property-builder builder
                                                                     id
                                                                     config)

The build-cfn-user-pool-user-attribute-update-settings-property-builder function updates a CfnUserPool$UserAttributeUpdateSettingsProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$UserAttributeUpdateSettingsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributesRequireVerificationBeforeUpdatejava.util.Listcdk.support/lookup-entry:attributes-require-verification-before-update
The build-cfn-user-pool-user-attribute-update-settings-property-builder function updates a CfnUserPool$UserAttributeUpdateSettingsProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$UserAttributeUpdateSettingsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributesRequireVerificationBeforeUpdate` | java.util.List | [[cdk.support/lookup-entry]] | `:attributes-require-verification-before-update` |
sourceraw docstring

build-cfn-user-pool-user-builderclj

(build-cfn-user-pool-user-builder builder id config)

The build-cfn-user-pool-user-builder function updates a CfnUserPoolUser$Builder instance using the provided configuration. The function takes the CfnUserPoolUser$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
clientMetadatajava.util.Mapcdk.support/lookup-entry:client-metadata
desiredDeliveryMediumsjava.util.Listcdk.support/lookup-entry:desired-delivery-mediums
forceAliasCreationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:force-alias-creation
messageActionjava.lang.Stringcdk.support/lookup-entry:message-action
userAttributesjava.util.Listcdk.support/lookup-entry:user-attributes
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
usernamejava.lang.Stringcdk.support/lookup-entry:username
validationDatasoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:validation-data
The build-cfn-user-pool-user-builder function updates a CfnUserPoolUser$Builder instance using the provided configuration.
  The function takes the CfnUserPoolUser$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `clientMetadata` | java.util.Map | [[cdk.support/lookup-entry]] | `:client-metadata` |
| `desiredDeliveryMediums` | java.util.List | [[cdk.support/lookup-entry]] | `:desired-delivery-mediums` |
| `forceAliasCreation` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:force-alias-creation` |
| `messageAction` | java.lang.String | [[cdk.support/lookup-entry]] | `:message-action` |
| `userAttributes` | java.util.List | [[cdk.support/lookup-entry]] | `:user-attributes` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
| `username` | java.lang.String | [[cdk.support/lookup-entry]] | `:username` |
| `validationData` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:validation-data` |
sourceraw docstring

build-cfn-user-pool-user-pool-add-ons-property-builderclj

(build-cfn-user-pool-user-pool-add-ons-property-builder builder id config)

The build-cfn-user-pool-user-pool-add-ons-property-builder function updates a CfnUserPool$UserPoolAddOnsProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$UserPoolAddOnsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
advancedSecurityModejava.lang.Stringcdk.support/lookup-entry:advanced-security-mode
The build-cfn-user-pool-user-pool-add-ons-property-builder function updates a CfnUserPool$UserPoolAddOnsProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$UserPoolAddOnsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `advancedSecurityMode` | java.lang.String | [[cdk.support/lookup-entry]] | `:advanced-security-mode` |
sourceraw docstring

build-cfn-user-pool-user-props-builderclj

(build-cfn-user-pool-user-props-builder builder id config)

The build-cfn-user-pool-user-props-builder function updates a CfnUserPoolUserProps$Builder instance using the provided configuration. The function takes the CfnUserPoolUserProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
clientMetadatasoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:client-metadata
desiredDeliveryMediumsjava.util.Listcdk.support/lookup-entry:desired-delivery-mediums
forceAliasCreationsoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:force-alias-creation
messageActionjava.lang.Stringcdk.support/lookup-entry:message-action
userAttributessoftware.amazon.awscdk.IResolvablecdk.support/lookup-entry:user-attributes
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
usernamejava.lang.Stringcdk.support/lookup-entry:username
validationDatajava.util.Listcdk.support/lookup-entry:validation-data
The build-cfn-user-pool-user-props-builder function updates a CfnUserPoolUserProps$Builder instance using the provided configuration.
  The function takes the CfnUserPoolUserProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `clientMetadata` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:client-metadata` |
| `desiredDeliveryMediums` | java.util.List | [[cdk.support/lookup-entry]] | `:desired-delivery-mediums` |
| `forceAliasCreation` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:force-alias-creation` |
| `messageAction` | java.lang.String | [[cdk.support/lookup-entry]] | `:message-action` |
| `userAttributes` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:user-attributes` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
| `username` | java.lang.String | [[cdk.support/lookup-entry]] | `:username` |
| `validationData` | java.util.List | [[cdk.support/lookup-entry]] | `:validation-data` |
sourceraw docstring

build-cfn-user-pool-user-to-group-attachment-builderclj

(build-cfn-user-pool-user-to-group-attachment-builder builder id config)

The build-cfn-user-pool-user-to-group-attachment-builder function updates a CfnUserPoolUserToGroupAttachment$Builder instance using the provided configuration. The function takes the CfnUserPoolUserToGroupAttachment$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
groupNamejava.lang.Stringcdk.support/lookup-entry:group-name
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
usernamejava.lang.Stringcdk.support/lookup-entry:username
The build-cfn-user-pool-user-to-group-attachment-builder function updates a CfnUserPoolUserToGroupAttachment$Builder instance using the provided configuration.
  The function takes the CfnUserPoolUserToGroupAttachment$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
| `username` | java.lang.String | [[cdk.support/lookup-entry]] | `:username` |
sourceraw docstring

build-cfn-user-pool-user-to-group-attachment-props-builderclj

(build-cfn-user-pool-user-to-group-attachment-props-builder builder id config)

The build-cfn-user-pool-user-to-group-attachment-props-builder function updates a CfnUserPoolUserToGroupAttachmentProps$Builder instance using the provided configuration. The function takes the CfnUserPoolUserToGroupAttachmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
groupNamejava.lang.Stringcdk.support/lookup-entry:group-name
userPoolIdjava.lang.Stringcdk.support/lookup-entry:user-pool-id
usernamejava.lang.Stringcdk.support/lookup-entry:username
The build-cfn-user-pool-user-to-group-attachment-props-builder function updates a CfnUserPoolUserToGroupAttachmentProps$Builder instance using the provided configuration.
  The function takes the CfnUserPoolUserToGroupAttachmentProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` |
| `userPoolId` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-id` |
| `username` | java.lang.String | [[cdk.support/lookup-entry]] | `:username` |
sourceraw docstring

build-cfn-user-pool-username-configuration-property-builderclj

(build-cfn-user-pool-username-configuration-property-builder builder id config)

The build-cfn-user-pool-username-configuration-property-builder function updates a CfnUserPool$UsernameConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$UsernameConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
caseSensitivejava.lang.Booleancdk.support/lookup-entry:case-sensitive
The build-cfn-user-pool-username-configuration-property-builder function updates a CfnUserPool$UsernameConfigurationProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$UsernameConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `caseSensitive` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:case-sensitive` |
sourceraw docstring

build-cfn-user-pool-verification-message-template-property-builderclj

(build-cfn-user-pool-verification-message-template-property-builder builder
                                                                    id
                                                                    config)

The build-cfn-user-pool-verification-message-template-property-builder function updates a CfnUserPool$VerificationMessageTemplateProperty$Builder instance using the provided configuration. The function takes the CfnUserPool$VerificationMessageTemplateProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
defaultEmailOptionjava.lang.Stringcdk.support/lookup-entry:default-email-option
emailMessagejava.lang.Stringcdk.support/lookup-entry:email-message
emailMessageByLinkjava.lang.Stringcdk.support/lookup-entry:email-message-by-link
emailSubjectjava.lang.Stringcdk.support/lookup-entry:email-subject
emailSubjectByLinkjava.lang.Stringcdk.support/lookup-entry:email-subject-by-link
smsMessagejava.lang.Stringcdk.support/lookup-entry:sms-message
The build-cfn-user-pool-verification-message-template-property-builder function updates a CfnUserPool$VerificationMessageTemplateProperty$Builder instance using the provided configuration.
  The function takes the CfnUserPool$VerificationMessageTemplateProperty$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `defaultEmailOption` | java.lang.String | [[cdk.support/lookup-entry]] | `:default-email-option` |
| `emailMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-message` |
| `emailMessageByLink` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-message-by-link` |
| `emailSubject` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-subject` |
| `emailSubjectByLink` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-subject-by-link` |
| `smsMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:sms-message` |
sourceraw docstring

build-cognito-domain-options-builderclj

(build-cognito-domain-options-builder builder id config)

The build-cognito-domain-options-builder function updates a CognitoDomainOptions$Builder instance using the provided configuration. The function takes the CognitoDomainOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
domainPrefixjava.lang.Stringcdk.support/lookup-entry:domain-prefix
The build-cognito-domain-options-builder function updates a CognitoDomainOptions$Builder instance using the provided configuration.
  The function takes the CognitoDomainOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `domainPrefix` | java.lang.String | [[cdk.support/lookup-entry]] | `:domain-prefix` |
sourceraw docstring

build-custom-attribute-config-builderclj

(build-custom-attribute-config-builder builder id config)

The build-custom-attribute-config-builder function updates a CustomAttributeConfig$Builder instance using the provided configuration. The function takes the CustomAttributeConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
dataTypejava.lang.Stringcdk.support/lookup-entry:data-type
mutablejava.lang.Booleancdk.support/lookup-entry:mutable
numberConstraintssoftware.amazon.awscdk.services.cognito.NumberAttributeConstraintscdk.support/lookup-entry:number-constraints
stringConstraintssoftware.amazon.awscdk.services.cognito.StringAttributeConstraintscdk.support/lookup-entry:string-constraints
The build-custom-attribute-config-builder function updates a CustomAttributeConfig$Builder instance using the provided configuration.
  The function takes the CustomAttributeConfig$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `dataType` | java.lang.String | [[cdk.support/lookup-entry]] | `:data-type` |
| `mutable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:mutable` |
| `numberConstraints` | software.amazon.awscdk.services.cognito.NumberAttributeConstraints | [[cdk.support/lookup-entry]] | `:number-constraints` |
| `stringConstraints` | software.amazon.awscdk.services.cognito.StringAttributeConstraints | [[cdk.support/lookup-entry]] | `:string-constraints` |
sourceraw docstring

build-custom-attribute-props-builderclj

(build-custom-attribute-props-builder builder id config)

The build-custom-attribute-props-builder function updates a CustomAttributeProps$Builder instance using the provided configuration. The function takes the CustomAttributeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
mutablejava.lang.Booleancdk.support/lookup-entry:mutable
The build-custom-attribute-props-builder function updates a CustomAttributeProps$Builder instance using the provided configuration.
  The function takes the CustomAttributeProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `mutable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:mutable` |
sourceraw docstring

build-custom-domain-options-builderclj

(build-custom-domain-options-builder builder id config)

The build-custom-domain-options-builder function updates a CustomDomainOptions$Builder instance using the provided configuration. The function takes the CustomDomainOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
certificatesoftware.amazon.awscdk.services.certificatemanager.ICertificatecdk.support/lookup-entry:certificate
domainNamejava.lang.Stringcdk.support/lookup-entry:domain-name
The build-custom-domain-options-builder function updates a CustomDomainOptions$Builder instance using the provided configuration.
  The function takes the CustomDomainOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `certificate` | software.amazon.awscdk.services.certificatemanager.ICertificate | [[cdk.support/lookup-entry]] | `:certificate` |
| `domainName` | java.lang.String | [[cdk.support/lookup-entry]] | `:domain-name` |
sourceraw docstring

build-date-time-attribute-builderclj

(build-date-time-attribute-builder builder id config)

The build-date-time-attribute-builder function updates a DateTimeAttribute$Builder instance using the provided configuration. The function takes the DateTimeAttribute$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
mutablejava.lang.Booleancdk.support/lookup-entry:mutable
The build-date-time-attribute-builder function updates a DateTimeAttribute$Builder instance using the provided configuration.
  The function takes the DateTimeAttribute$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `mutable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:mutable` |
sourceraw docstring

build-device-tracking-builderclj

(build-device-tracking-builder builder id config)

The build-device-tracking-builder function updates a DeviceTracking$Builder instance using the provided configuration. The function takes the DeviceTracking$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
challengeRequiredOnNewDevicejava.lang.Booleancdk.support/lookup-entry:challenge-required-on-new-device
deviceOnlyRememberedOnUserPromptjava.lang.Booleancdk.support/lookup-entry:device-only-remembered-on-user-prompt
The build-device-tracking-builder function updates a DeviceTracking$Builder instance using the provided configuration.
  The function takes the DeviceTracking$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `challengeRequiredOnNewDevice` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:challenge-required-on-new-device` |
| `deviceOnlyRememberedOnUserPrompt` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:device-only-remembered-on-user-prompt` |
sourceraw docstring

build-email-settings-builderclj

(build-email-settings-builder builder id config)

The build-email-settings-builder function updates a EmailSettings$Builder instance using the provided configuration. The function takes the EmailSettings$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
fromjava.lang.Stringcdk.support/lookup-entry:from
replyTojava.lang.Stringcdk.support/lookup-entry:reply-to
The build-email-settings-builder function updates a EmailSettings$Builder instance using the provided configuration.
  The function takes the EmailSettings$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `from` | java.lang.String | [[cdk.support/lookup-entry]] | `:from` |
| `replyTo` | java.lang.String | [[cdk.support/lookup-entry]] | `:reply-to` |
sourceraw docstring

build-keep-original-attrs-builderclj

(build-keep-original-attrs-builder builder id config)

The build-keep-original-attrs-builder function updates a KeepOriginalAttrs$Builder instance using the provided configuration. The function takes the KeepOriginalAttrs$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
emailjava.lang.Booleancdk.support/lookup-entry:email
phonejava.lang.Booleancdk.support/lookup-entry:phone
The build-keep-original-attrs-builder function updates a KeepOriginalAttrs$Builder instance using the provided configuration.
  The function takes the KeepOriginalAttrs$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `email` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:email` |
| `phone` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:phone` |
sourceraw docstring

build-mfa-second-factor-builderclj

(build-mfa-second-factor-builder builder id config)

The build-mfa-second-factor-builder function updates a MfaSecondFactor$Builder instance using the provided configuration. The function takes the MfaSecondFactor$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
otpjava.lang.Booleancdk.support/lookup-entry:otp
smsjava.lang.Booleancdk.support/lookup-entry:sms
The build-mfa-second-factor-builder function updates a MfaSecondFactor$Builder instance using the provided configuration.
  The function takes the MfaSecondFactor$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `otp` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:otp` |
| `sms` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:sms` |
sourceraw docstring

build-number-attribute-builderclj

(build-number-attribute-builder builder id config)

The build-number-attribute-builder function updates a NumberAttribute$Builder instance using the provided configuration. The function takes the NumberAttribute$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
maxjava.lang.Numbercdk.support/lookup-entry:max
minjava.lang.Numbercdk.support/lookup-entry:min
mutablejava.lang.Booleancdk.support/lookup-entry:mutable
The build-number-attribute-builder function updates a NumberAttribute$Builder instance using the provided configuration.
  The function takes the NumberAttribute$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `max` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max` |
| `min` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min` |
| `mutable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:mutable` |
sourceraw docstring

build-number-attribute-constraints-builderclj

(build-number-attribute-constraints-builder builder id config)

The build-number-attribute-constraints-builder function updates a NumberAttributeConstraints$Builder instance using the provided configuration. The function takes the NumberAttributeConstraints$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
maxjava.lang.Numbercdk.support/lookup-entry:max
minjava.lang.Numbercdk.support/lookup-entry:min
The build-number-attribute-constraints-builder function updates a NumberAttributeConstraints$Builder instance using the provided configuration.
  The function takes the NumberAttributeConstraints$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `max` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max` |
| `min` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min` |
sourceraw docstring

build-number-attribute-props-builderclj

(build-number-attribute-props-builder builder id config)

The build-number-attribute-props-builder function updates a NumberAttributeProps$Builder instance using the provided configuration. The function takes the NumberAttributeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
maxjava.lang.Numbercdk.support/lookup-entry:max
minjava.lang.Numbercdk.support/lookup-entry:min
mutablejava.lang.Booleancdk.support/lookup-entry:mutable
The build-number-attribute-props-builder function updates a NumberAttributeProps$Builder instance using the provided configuration.
  The function takes the NumberAttributeProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `max` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max` |
| `min` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min` |
| `mutable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:mutable` |
sourceraw docstring

build-o-auth-flows-builderclj

(build-o-auth-flows-builder builder id config)

The build-o-auth-flows-builder function updates a OAuthFlows$Builder instance using the provided configuration. The function takes the OAuthFlows$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
authorizationCodeGrantjava.lang.Booleancdk.support/lookup-entry:authorization-code-grant
clientCredentialsjava.lang.Booleancdk.support/lookup-entry:client-credentials
implicitCodeGrantjava.lang.Booleancdk.support/lookup-entry:implicit-code-grant
The build-o-auth-flows-builder function updates a OAuthFlows$Builder instance using the provided configuration.
  The function takes the OAuthFlows$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `authorizationCodeGrant` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:authorization-code-grant` |
| `clientCredentials` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:client-credentials` |
| `implicitCodeGrant` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:implicit-code-grant` |
sourceraw docstring

build-o-auth-settings-builderclj

(build-o-auth-settings-builder builder id config)

The build-o-auth-settings-builder function updates a OAuthSettings$Builder instance using the provided configuration. The function takes the OAuthSettings$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
callbackUrlsjava.util.Listcdk.support/lookup-entry:callback-urls
flowssoftware.amazon.awscdk.services.cognito.OAuthFlowscdk.support/lookup-entry:flows
logoutUrlsjava.util.Listcdk.support/lookup-entry:logout-urls
scopesjava.util.Listcdk.support/lookup-entry:scopes
The build-o-auth-settings-builder function updates a OAuthSettings$Builder instance using the provided configuration.
  The function takes the OAuthSettings$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `callbackUrls` | java.util.List | [[cdk.support/lookup-entry]] | `:callback-urls` |
| `flows` | software.amazon.awscdk.services.cognito.OAuthFlows | [[cdk.support/lookup-entry]] | `:flows` |
| `logoutUrls` | java.util.List | [[cdk.support/lookup-entry]] | `:logout-urls` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
sourceraw docstring

build-oidc-endpoints-builderclj

(build-oidc-endpoints-builder builder id config)

The build-oidc-endpoints-builder function updates a OidcEndpoints$Builder instance using the provided configuration. The function takes the OidcEndpoints$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
authorizationjava.lang.Stringcdk.support/lookup-entry:authorization
jwksUrijava.lang.Stringcdk.support/lookup-entry:jwks-uri
tokenjava.lang.Stringcdk.support/lookup-entry:token
userInfojava.lang.Stringcdk.support/lookup-entry:user-info
The build-oidc-endpoints-builder function updates a OidcEndpoints$Builder instance using the provided configuration.
  The function takes the OidcEndpoints$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `authorization` | java.lang.String | [[cdk.support/lookup-entry]] | `:authorization` |
| `jwksUri` | java.lang.String | [[cdk.support/lookup-entry]] | `:jwks-uri` |
| `token` | java.lang.String | [[cdk.support/lookup-entry]] | `:token` |
| `userInfo` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-info` |
sourceraw docstring

build-password-policy-builderclj

(build-password-policy-builder builder id config)

The build-password-policy-builder function updates a PasswordPolicy$Builder instance using the provided configuration. The function takes the PasswordPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
minLengthjava.lang.Numbercdk.support/lookup-entry:min-length
requireDigitsjava.lang.Booleancdk.support/lookup-entry:require-digits
requireLowercasejava.lang.Booleancdk.support/lookup-entry:require-lowercase
requireSymbolsjava.lang.Booleancdk.support/lookup-entry:require-symbols
requireUppercasejava.lang.Booleancdk.support/lookup-entry:require-uppercase
tempPasswordValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:temp-password-validity
The build-password-policy-builder function updates a PasswordPolicy$Builder instance using the provided configuration.
  The function takes the PasswordPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `minLength` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-length` |
| `requireDigits` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:require-digits` |
| `requireLowercase` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:require-lowercase` |
| `requireSymbols` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:require-symbols` |
| `requireUppercase` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:require-uppercase` |
| `tempPasswordValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:temp-password-validity` |
sourceraw docstring

build-resource-server-scope-builderclj

(build-resource-server-scope-builder builder id config)

The build-resource-server-scope-builder function updates a ResourceServerScope$Builder instance using the provided configuration. The function takes the ResourceServerScope$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
scopeDescriptionjava.lang.Stringcdk.support/lookup-entry:scope-description
scopeNamejava.lang.Stringcdk.support/lookup-entry:scope-name
The build-resource-server-scope-builder function updates a ResourceServerScope$Builder instance using the provided configuration.
  The function takes the ResourceServerScope$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `scopeDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:scope-description` |
| `scopeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:scope-name` |
sourceraw docstring

build-resource-server-scope-props-builderclj

(build-resource-server-scope-props-builder builder id config)

The build-resource-server-scope-props-builder function updates a ResourceServerScopeProps$Builder instance using the provided configuration. The function takes the ResourceServerScopeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
scopeDescriptionjava.lang.Stringcdk.support/lookup-entry:scope-description
scopeNamejava.lang.Stringcdk.support/lookup-entry:scope-name
The build-resource-server-scope-props-builder function updates a ResourceServerScopeProps$Builder instance using the provided configuration.
  The function takes the ResourceServerScopeProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `scopeDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:scope-description` |
| `scopeName` | java.lang.String | [[cdk.support/lookup-entry]] | `:scope-name` |
sourceraw docstring

build-sign-in-aliases-builderclj

(build-sign-in-aliases-builder builder id config)

The build-sign-in-aliases-builder function updates a SignInAliases$Builder instance using the provided configuration. The function takes the SignInAliases$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
emailjava.lang.Booleancdk.support/lookup-entry:email
phonejava.lang.Booleancdk.support/lookup-entry:phone
preferredUsernamejava.lang.Booleancdk.support/lookup-entry:preferred-username
usernamejava.lang.Booleancdk.support/lookup-entry:username
The build-sign-in-aliases-builder function updates a SignInAliases$Builder instance using the provided configuration.
  The function takes the SignInAliases$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `email` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:email` |
| `phone` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:phone` |
| `preferredUsername` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:preferred-username` |
| `username` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:username` |
sourceraw docstring

build-sign-in-url-options-builderclj

(build-sign-in-url-options-builder builder id config)

The build-sign-in-url-options-builder function updates a SignInUrlOptions$Builder instance using the provided configuration. The function takes the SignInUrlOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
fipsjava.lang.Booleancdk.support/lookup-entry:fips
redirectUrijava.lang.Stringcdk.support/lookup-entry:redirect-uri
signInPathjava.lang.Stringcdk.support/lookup-entry:sign-in-path
The build-sign-in-url-options-builder function updates a SignInUrlOptions$Builder instance using the provided configuration.
  The function takes the SignInUrlOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `fips` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:fips` |
| `redirectUri` | java.lang.String | [[cdk.support/lookup-entry]] | `:redirect-uri` |
| `signInPath` | java.lang.String | [[cdk.support/lookup-entry]] | `:sign-in-path` |
sourceraw docstring

build-standard-attribute-builderclj

(build-standard-attribute-builder builder id config)

The build-standard-attribute-builder function updates a StandardAttribute$Builder instance using the provided configuration. The function takes the StandardAttribute$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
mutablejava.lang.Booleancdk.support/lookup-entry:mutable
requiredjava.lang.Booleancdk.support/lookup-entry:required
The build-standard-attribute-builder function updates a StandardAttribute$Builder instance using the provided configuration.
  The function takes the StandardAttribute$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `mutable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:mutable` |
| `required` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:required` |
sourceraw docstring

build-standard-attributes-builderclj

(build-standard-attributes-builder builder id config)

The build-standard-attributes-builder function updates a StandardAttributes$Builder instance using the provided configuration. The function takes the StandardAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
addresssoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:address
birthdatesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:birthdate
emailsoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:email
familyNamesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:family-name
fullnamesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:fullname
gendersoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:gender
givenNamesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:given-name
lastUpdateTimesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:last-update-time
localesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:locale
middleNamesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:middle-name
nicknamesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:nickname
phoneNumbersoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:phone-number
preferredUsernamesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:preferred-username
profilePagesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:profile-page
profilePicturesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:profile-picture
timezonesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:timezone
websitesoftware.amazon.awscdk.services.cognito.StandardAttributecdk.support/lookup-entry:website
The build-standard-attributes-builder function updates a StandardAttributes$Builder instance using the provided configuration.
  The function takes the StandardAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `address` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:address` |
| `birthdate` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:birthdate` |
| `email` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:email` |
| `familyName` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:family-name` |
| `fullname` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:fullname` |
| `gender` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:gender` |
| `givenName` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:given-name` |
| `lastUpdateTime` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:last-update-time` |
| `locale` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:locale` |
| `middleName` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:middle-name` |
| `nickname` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:nickname` |
| `phoneNumber` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:phone-number` |
| `preferredUsername` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:preferred-username` |
| `profilePage` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:profile-page` |
| `profilePicture` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:profile-picture` |
| `timezone` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:timezone` |
| `website` | software.amazon.awscdk.services.cognito.StandardAttribute | [[cdk.support/lookup-entry]] | `:website` |
sourceraw docstring

build-standard-attributes-mask-builderclj

(build-standard-attributes-mask-builder builder id config)

The build-standard-attributes-mask-builder function updates a StandardAttributesMask$Builder instance using the provided configuration. The function takes the StandardAttributesMask$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
addressjava.lang.Booleancdk.support/lookup-entry:address
birthdatejava.lang.Booleancdk.support/lookup-entry:birthdate
emailjava.lang.Booleancdk.support/lookup-entry:email
emailVerifiedjava.lang.Booleancdk.support/lookup-entry:email-verified
familyNamejava.lang.Booleancdk.support/lookup-entry:family-name
fullnamejava.lang.Booleancdk.support/lookup-entry:fullname
genderjava.lang.Booleancdk.support/lookup-entry:gender
givenNamejava.lang.Booleancdk.support/lookup-entry:given-name
lastUpdateTimejava.lang.Booleancdk.support/lookup-entry:last-update-time
localejava.lang.Booleancdk.support/lookup-entry:locale
middleNamejava.lang.Booleancdk.support/lookup-entry:middle-name
nicknamejava.lang.Booleancdk.support/lookup-entry:nickname
phoneNumberjava.lang.Booleancdk.support/lookup-entry:phone-number
phoneNumberVerifiedjava.lang.Booleancdk.support/lookup-entry:phone-number-verified
preferredUsernamejava.lang.Booleancdk.support/lookup-entry:preferred-username
profilePagejava.lang.Booleancdk.support/lookup-entry:profile-page
profilePicturejava.lang.Booleancdk.support/lookup-entry:profile-picture
timezonejava.lang.Booleancdk.support/lookup-entry:timezone
websitejava.lang.Booleancdk.support/lookup-entry:website
The build-standard-attributes-mask-builder function updates a StandardAttributesMask$Builder instance using the provided configuration.
  The function takes the StandardAttributesMask$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `address` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:address` |
| `birthdate` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:birthdate` |
| `email` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:email` |
| `emailVerified` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:email-verified` |
| `familyName` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:family-name` |
| `fullname` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:fullname` |
| `gender` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:gender` |
| `givenName` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:given-name` |
| `lastUpdateTime` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:last-update-time` |
| `locale` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:locale` |
| `middleName` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:middle-name` |
| `nickname` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:nickname` |
| `phoneNumber` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:phone-number` |
| `phoneNumberVerified` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:phone-number-verified` |
| `preferredUsername` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:preferred-username` |
| `profilePage` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:profile-page` |
| `profilePicture` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:profile-picture` |
| `timezone` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:timezone` |
| `website` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:website` |
sourceraw docstring

build-string-attribute-builderclj

(build-string-attribute-builder builder id config)

The build-string-attribute-builder function updates a StringAttribute$Builder instance using the provided configuration. The function takes the StringAttribute$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
maxLenjava.lang.Numbercdk.support/lookup-entry:max-len
minLenjava.lang.Numbercdk.support/lookup-entry:min-len
mutablejava.lang.Booleancdk.support/lookup-entry:mutable
The build-string-attribute-builder function updates a StringAttribute$Builder instance using the provided configuration.
  The function takes the StringAttribute$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `maxLen` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-len` |
| `minLen` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-len` |
| `mutable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:mutable` |
sourceraw docstring

build-string-attribute-constraints-builderclj

(build-string-attribute-constraints-builder builder id config)

The build-string-attribute-constraints-builder function updates a StringAttributeConstraints$Builder instance using the provided configuration. The function takes the StringAttributeConstraints$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
maxLenjava.lang.Numbercdk.support/lookup-entry:max-len
minLenjava.lang.Numbercdk.support/lookup-entry:min-len
The build-string-attribute-constraints-builder function updates a StringAttributeConstraints$Builder instance using the provided configuration.
  The function takes the StringAttributeConstraints$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `maxLen` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-len` |
| `minLen` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-len` |
sourceraw docstring

build-string-attribute-props-builderclj

(build-string-attribute-props-builder builder id config)

The build-string-attribute-props-builder function updates a StringAttributeProps$Builder instance using the provided configuration. The function takes the StringAttributeProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
maxLenjava.lang.Numbercdk.support/lookup-entry:max-len
minLenjava.lang.Numbercdk.support/lookup-entry:min-len
mutablejava.lang.Booleancdk.support/lookup-entry:mutable
The build-string-attribute-props-builder function updates a StringAttributeProps$Builder instance using the provided configuration.
  The function takes the StringAttributeProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `maxLen` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-len` |
| `minLen` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min-len` |
| `mutable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:mutable` |
sourceraw docstring

build-user-invitation-config-builderclj

(build-user-invitation-config-builder builder id config)

The build-user-invitation-config-builder function updates a UserInvitationConfig$Builder instance using the provided configuration. The function takes the UserInvitationConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
emailBodyjava.lang.Stringcdk.support/lookup-entry:email-body
emailSubjectjava.lang.Stringcdk.support/lookup-entry:email-subject
smsMessagejava.lang.Stringcdk.support/lookup-entry:sms-message
The build-user-invitation-config-builder function updates a UserInvitationConfig$Builder instance using the provided configuration.
  The function takes the UserInvitationConfig$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `emailBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-body` |
| `emailSubject` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-subject` |
| `smsMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:sms-message` |
sourceraw docstring

build-user-pool-builderclj

(build-user-pool-builder builder id config)

The build-user-pool-builder function updates a UserPool$Builder instance using the provided configuration. The function takes the UserPool$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accountRecoverysoftware.amazon.awscdk.services.cognito.AccountRecoverycdk.api.services.cognito/account-recovery:account-recovery
advancedSecurityModesoftware.amazon.awscdk.services.cognito.AdvancedSecurityModecdk.api.services.cognito/advanced-security-mode:advanced-security-mode
autoVerifysoftware.amazon.awscdk.services.cognito.AutoVerifiedAttrscdk.support/lookup-entry:auto-verify
customAttributesjava.util.Mapcdk.support/lookup-entry:custom-attributes
customSenderKmsKeysoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:custom-sender-kms-key
deletionProtectionjava.lang.Booleancdk.support/lookup-entry:deletion-protection
deviceTrackingsoftware.amazon.awscdk.services.cognito.DeviceTrackingcdk.support/lookup-entry:device-tracking
emailsoftware.amazon.awscdk.services.cognito.UserPoolEmailcdk.support/lookup-entry:email
enableSmsRolejava.lang.Booleancdk.support/lookup-entry:enable-sms-role
keepOriginalsoftware.amazon.awscdk.services.cognito.KeepOriginalAttrscdk.support/lookup-entry:keep-original
lambdaTriggerssoftware.amazon.awscdk.services.cognito.UserPoolTriggerscdk.support/lookup-entry:lambda-triggers
mfasoftware.amazon.awscdk.services.cognito.Mfacdk.api.services.cognito/mfa:mfa
mfaMessagejava.lang.Stringcdk.support/lookup-entry:mfa-message
mfaSecondFactorsoftware.amazon.awscdk.services.cognito.MfaSecondFactorcdk.support/lookup-entry:mfa-second-factor
passwordPolicysoftware.amazon.awscdk.services.cognito.PasswordPolicycdk.support/lookup-entry:password-policy
removalPolicysoftware.amazon.awscdk.RemovalPolicycdk.api/removal-policy:removal-policy
selfSignUpEnabledjava.lang.Booleancdk.support/lookup-entry:self-sign-up-enabled
signInAliasessoftware.amazon.awscdk.services.cognito.SignInAliasescdk.support/lookup-entry:sign-in-aliases
signInCaseSensitivejava.lang.Booleancdk.support/lookup-entry:sign-in-case-sensitive
smsRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:sms-role
smsRoleExternalIdjava.lang.Stringcdk.support/lookup-entry:sms-role-external-id
snsRegionjava.lang.Stringcdk.support/lookup-entry:sns-region
standardAttributessoftware.amazon.awscdk.services.cognito.StandardAttributescdk.support/lookup-entry:standard-attributes
userInvitationsoftware.amazon.awscdk.services.cognito.UserInvitationConfigcdk.support/lookup-entry:user-invitation
userPoolNamejava.lang.Stringcdk.support/lookup-entry:user-pool-name
userVerificationsoftware.amazon.awscdk.services.cognito.UserVerificationConfigcdk.support/lookup-entry:user-verification
The build-user-pool-builder function updates a UserPool$Builder instance using the provided configuration.
  The function takes the UserPool$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accountRecovery` | software.amazon.awscdk.services.cognito.AccountRecovery | [[cdk.api.services.cognito/account-recovery]] | `:account-recovery` |
| `advancedSecurityMode` | software.amazon.awscdk.services.cognito.AdvancedSecurityMode | [[cdk.api.services.cognito/advanced-security-mode]] | `:advanced-security-mode` |
| `autoVerify` | software.amazon.awscdk.services.cognito.AutoVerifiedAttrs | [[cdk.support/lookup-entry]] | `:auto-verify` |
| `customAttributes` | java.util.Map | [[cdk.support/lookup-entry]] | `:custom-attributes` |
| `customSenderKmsKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:custom-sender-kms-key` |
| `deletionProtection` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:deletion-protection` |
| `deviceTracking` | software.amazon.awscdk.services.cognito.DeviceTracking | [[cdk.support/lookup-entry]] | `:device-tracking` |
| `email` | software.amazon.awscdk.services.cognito.UserPoolEmail | [[cdk.support/lookup-entry]] | `:email` |
| `enableSmsRole` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-sms-role` |
| `keepOriginal` | software.amazon.awscdk.services.cognito.KeepOriginalAttrs | [[cdk.support/lookup-entry]] | `:keep-original` |
| `lambdaTriggers` | software.amazon.awscdk.services.cognito.UserPoolTriggers | [[cdk.support/lookup-entry]] | `:lambda-triggers` |
| `mfa` | software.amazon.awscdk.services.cognito.Mfa | [[cdk.api.services.cognito/mfa]] | `:mfa` |
| `mfaMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:mfa-message` |
| `mfaSecondFactor` | software.amazon.awscdk.services.cognito.MfaSecondFactor | [[cdk.support/lookup-entry]] | `:mfa-second-factor` |
| `passwordPolicy` | software.amazon.awscdk.services.cognito.PasswordPolicy | [[cdk.support/lookup-entry]] | `:password-policy` |
| `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` |
| `selfSignUpEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:self-sign-up-enabled` |
| `signInAliases` | software.amazon.awscdk.services.cognito.SignInAliases | [[cdk.support/lookup-entry]] | `:sign-in-aliases` |
| `signInCaseSensitive` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:sign-in-case-sensitive` |
| `smsRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:sms-role` |
| `smsRoleExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:sms-role-external-id` |
| `snsRegion` | java.lang.String | [[cdk.support/lookup-entry]] | `:sns-region` |
| `standardAttributes` | software.amazon.awscdk.services.cognito.StandardAttributes | [[cdk.support/lookup-entry]] | `:standard-attributes` |
| `userInvitation` | software.amazon.awscdk.services.cognito.UserInvitationConfig | [[cdk.support/lookup-entry]] | `:user-invitation` |
| `userPoolName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-name` |
| `userVerification` | software.amazon.awscdk.services.cognito.UserVerificationConfig | [[cdk.support/lookup-entry]] | `:user-verification` |
sourceraw docstring

build-user-pool-client-builderclj

(build-user-pool-client-builder builder id config)

The build-user-pool-client-builder function updates a UserPoolClient$Builder instance using the provided configuration. The function takes the UserPoolClient$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accessTokenValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:access-token-validity
authFlowssoftware.amazon.awscdk.services.cognito.AuthFlowcdk.support/lookup-entry:auth-flows
authSessionValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:auth-session-validity
disableOAuthjava.lang.Booleancdk.support/lookup-entry:disable-o-auth
enablePropagateAdditionalUserContextDatajava.lang.Booleancdk.support/lookup-entry:enable-propagate-additional-user-context-data
enableTokenRevocationjava.lang.Booleancdk.support/lookup-entry:enable-token-revocation
generateSecretjava.lang.Booleancdk.support/lookup-entry:generate-secret
idTokenValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:id-token-validity
oAuthsoftware.amazon.awscdk.services.cognito.OAuthSettingscdk.support/lookup-entry:o-auth
preventUserExistenceErrorsjava.lang.Booleancdk.support/lookup-entry:prevent-user-existence-errors
readAttributessoftware.amazon.awscdk.services.cognito.ClientAttributescdk.support/lookup-entry:read-attributes
refreshTokenValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:refresh-token-validity
supportedIdentityProvidersjava.util.Listcdk.support/lookup-entry:supported-identity-providers
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
userPoolClientNamejava.lang.Stringcdk.support/lookup-entry:user-pool-client-name
writeAttributessoftware.amazon.awscdk.services.cognito.ClientAttributescdk.support/lookup-entry:write-attributes
The build-user-pool-client-builder function updates a UserPoolClient$Builder instance using the provided configuration.
  The function takes the UserPoolClient$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accessTokenValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:access-token-validity` |
| `authFlows` | software.amazon.awscdk.services.cognito.AuthFlow | [[cdk.support/lookup-entry]] | `:auth-flows` |
| `authSessionValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:auth-session-validity` |
| `disableOAuth` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:disable-o-auth` |
| `enablePropagateAdditionalUserContextData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-propagate-additional-user-context-data` |
| `enableTokenRevocation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-token-revocation` |
| `generateSecret` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:generate-secret` |
| `idTokenValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:id-token-validity` |
| `oAuth` | software.amazon.awscdk.services.cognito.OAuthSettings | [[cdk.support/lookup-entry]] | `:o-auth` |
| `preventUserExistenceErrors` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:prevent-user-existence-errors` |
| `readAttributes` | software.amazon.awscdk.services.cognito.ClientAttributes | [[cdk.support/lookup-entry]] | `:read-attributes` |
| `refreshTokenValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:refresh-token-validity` |
| `supportedIdentityProviders` | java.util.List | [[cdk.support/lookup-entry]] | `:supported-identity-providers` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
| `userPoolClientName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-client-name` |
| `writeAttributes` | software.amazon.awscdk.services.cognito.ClientAttributes | [[cdk.support/lookup-entry]] | `:write-attributes` |
sourceraw docstring

build-user-pool-client-options-builderclj

(build-user-pool-client-options-builder builder id config)

The build-user-pool-client-options-builder function updates a UserPoolClientOptions$Builder instance using the provided configuration. The function takes the UserPoolClientOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accessTokenValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:access-token-validity
authFlowssoftware.amazon.awscdk.services.cognito.AuthFlowcdk.support/lookup-entry:auth-flows
authSessionValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:auth-session-validity
disableOAuthjava.lang.Booleancdk.support/lookup-entry:disable-o-auth
enablePropagateAdditionalUserContextDatajava.lang.Booleancdk.support/lookup-entry:enable-propagate-additional-user-context-data
enableTokenRevocationjava.lang.Booleancdk.support/lookup-entry:enable-token-revocation
generateSecretjava.lang.Booleancdk.support/lookup-entry:generate-secret
idTokenValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:id-token-validity
oAuthsoftware.amazon.awscdk.services.cognito.OAuthSettingscdk.support/lookup-entry:o-auth
preventUserExistenceErrorsjava.lang.Booleancdk.support/lookup-entry:prevent-user-existence-errors
readAttributessoftware.amazon.awscdk.services.cognito.ClientAttributescdk.support/lookup-entry:read-attributes
refreshTokenValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:refresh-token-validity
supportedIdentityProvidersjava.util.Listcdk.support/lookup-entry:supported-identity-providers
userPoolClientNamejava.lang.Stringcdk.support/lookup-entry:user-pool-client-name
writeAttributessoftware.amazon.awscdk.services.cognito.ClientAttributescdk.support/lookup-entry:write-attributes
The build-user-pool-client-options-builder function updates a UserPoolClientOptions$Builder instance using the provided configuration.
  The function takes the UserPoolClientOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accessTokenValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:access-token-validity` |
| `authFlows` | software.amazon.awscdk.services.cognito.AuthFlow | [[cdk.support/lookup-entry]] | `:auth-flows` |
| `authSessionValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:auth-session-validity` |
| `disableOAuth` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:disable-o-auth` |
| `enablePropagateAdditionalUserContextData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-propagate-additional-user-context-data` |
| `enableTokenRevocation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-token-revocation` |
| `generateSecret` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:generate-secret` |
| `idTokenValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:id-token-validity` |
| `oAuth` | software.amazon.awscdk.services.cognito.OAuthSettings | [[cdk.support/lookup-entry]] | `:o-auth` |
| `preventUserExistenceErrors` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:prevent-user-existence-errors` |
| `readAttributes` | software.amazon.awscdk.services.cognito.ClientAttributes | [[cdk.support/lookup-entry]] | `:read-attributes` |
| `refreshTokenValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:refresh-token-validity` |
| `supportedIdentityProviders` | java.util.List | [[cdk.support/lookup-entry]] | `:supported-identity-providers` |
| `userPoolClientName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-client-name` |
| `writeAttributes` | software.amazon.awscdk.services.cognito.ClientAttributes | [[cdk.support/lookup-entry]] | `:write-attributes` |
sourceraw docstring

build-user-pool-client-props-builderclj

(build-user-pool-client-props-builder builder id config)

The build-user-pool-client-props-builder function updates a UserPoolClientProps$Builder instance using the provided configuration. The function takes the UserPoolClientProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accessTokenValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:access-token-validity
authFlowssoftware.amazon.awscdk.services.cognito.AuthFlowcdk.support/lookup-entry:auth-flows
authSessionValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:auth-session-validity
disableOAuthjava.lang.Booleancdk.support/lookup-entry:disable-o-auth
enablePropagateAdditionalUserContextDatajava.lang.Booleancdk.support/lookup-entry:enable-propagate-additional-user-context-data
enableTokenRevocationjava.lang.Booleancdk.support/lookup-entry:enable-token-revocation
generateSecretjava.lang.Booleancdk.support/lookup-entry:generate-secret
idTokenValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:id-token-validity
oAuthsoftware.amazon.awscdk.services.cognito.OAuthSettingscdk.support/lookup-entry:o-auth
preventUserExistenceErrorsjava.lang.Booleancdk.support/lookup-entry:prevent-user-existence-errors
readAttributessoftware.amazon.awscdk.services.cognito.ClientAttributescdk.support/lookup-entry:read-attributes
refreshTokenValiditysoftware.amazon.awscdk.Durationcdk.support/lookup-entry:refresh-token-validity
supportedIdentityProvidersjava.util.Listcdk.support/lookup-entry:supported-identity-providers
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
userPoolClientNamejava.lang.Stringcdk.support/lookup-entry:user-pool-client-name
writeAttributessoftware.amazon.awscdk.services.cognito.ClientAttributescdk.support/lookup-entry:write-attributes
The build-user-pool-client-props-builder function updates a UserPoolClientProps$Builder instance using the provided configuration.
  The function takes the UserPoolClientProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accessTokenValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:access-token-validity` |
| `authFlows` | software.amazon.awscdk.services.cognito.AuthFlow | [[cdk.support/lookup-entry]] | `:auth-flows` |
| `authSessionValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:auth-session-validity` |
| `disableOAuth` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:disable-o-auth` |
| `enablePropagateAdditionalUserContextData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-propagate-additional-user-context-data` |
| `enableTokenRevocation` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-token-revocation` |
| `generateSecret` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:generate-secret` |
| `idTokenValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:id-token-validity` |
| `oAuth` | software.amazon.awscdk.services.cognito.OAuthSettings | [[cdk.support/lookup-entry]] | `:o-auth` |
| `preventUserExistenceErrors` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:prevent-user-existence-errors` |
| `readAttributes` | software.amazon.awscdk.services.cognito.ClientAttributes | [[cdk.support/lookup-entry]] | `:read-attributes` |
| `refreshTokenValidity` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:refresh-token-validity` |
| `supportedIdentityProviders` | java.util.List | [[cdk.support/lookup-entry]] | `:supported-identity-providers` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
| `userPoolClientName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-client-name` |
| `writeAttributes` | software.amazon.awscdk.services.cognito.ClientAttributes | [[cdk.support/lookup-entry]] | `:write-attributes` |
sourceraw docstring

build-user-pool-domain-builderclj

(build-user-pool-domain-builder builder id config)

The build-user-pool-domain-builder function updates a UserPoolDomain$Builder instance using the provided configuration. The function takes the UserPoolDomain$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
cognitoDomainsoftware.amazon.awscdk.services.cognito.CognitoDomainOptionscdk.support/lookup-entry:cognito-domain
customDomainsoftware.amazon.awscdk.services.cognito.CustomDomainOptionscdk.support/lookup-entry:custom-domain
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-domain-builder function updates a UserPoolDomain$Builder instance using the provided configuration.
  The function takes the UserPoolDomain$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `cognitoDomain` | software.amazon.awscdk.services.cognito.CognitoDomainOptions | [[cdk.support/lookup-entry]] | `:cognito-domain` |
| `customDomain` | software.amazon.awscdk.services.cognito.CustomDomainOptions | [[cdk.support/lookup-entry]] | `:custom-domain` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-domain-options-builderclj

(build-user-pool-domain-options-builder builder id config)

The build-user-pool-domain-options-builder function updates a UserPoolDomainOptions$Builder instance using the provided configuration. The function takes the UserPoolDomainOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
cognitoDomainsoftware.amazon.awscdk.services.cognito.CognitoDomainOptionscdk.support/lookup-entry:cognito-domain
customDomainsoftware.amazon.awscdk.services.cognito.CustomDomainOptionscdk.support/lookup-entry:custom-domain
The build-user-pool-domain-options-builder function updates a UserPoolDomainOptions$Builder instance using the provided configuration.
  The function takes the UserPoolDomainOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `cognitoDomain` | software.amazon.awscdk.services.cognito.CognitoDomainOptions | [[cdk.support/lookup-entry]] | `:cognito-domain` |
| `customDomain` | software.amazon.awscdk.services.cognito.CustomDomainOptions | [[cdk.support/lookup-entry]] | `:custom-domain` |
sourceraw docstring

build-user-pool-domain-props-builderclj

(build-user-pool-domain-props-builder builder id config)

The build-user-pool-domain-props-builder function updates a UserPoolDomainProps$Builder instance using the provided configuration. The function takes the UserPoolDomainProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
cognitoDomainsoftware.amazon.awscdk.services.cognito.CognitoDomainOptionscdk.support/lookup-entry:cognito-domain
customDomainsoftware.amazon.awscdk.services.cognito.CustomDomainOptionscdk.support/lookup-entry:custom-domain
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-domain-props-builder function updates a UserPoolDomainProps$Builder instance using the provided configuration.
  The function takes the UserPoolDomainProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `cognitoDomain` | software.amazon.awscdk.services.cognito.CognitoDomainOptions | [[cdk.support/lookup-entry]] | `:cognito-domain` |
| `customDomain` | software.amazon.awscdk.services.cognito.CustomDomainOptions | [[cdk.support/lookup-entry]] | `:custom-domain` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-amazon-builderclj

(build-user-pool-identity-provider-amazon-builder builder id config)

The build-user-pool-identity-provider-amazon-builder function updates a UserPoolIdentityProviderAmazon$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderAmazon$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
clientSecretjava.lang.Stringcdk.support/lookup-entry:client-secret
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-amazon-builder function updates a UserPoolIdentityProviderAmazon$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderAmazon$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `clientSecret` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-secret` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-amazon-props-builderclj

(build-user-pool-identity-provider-amazon-props-builder builder id config)

The build-user-pool-identity-provider-amazon-props-builder function updates a UserPoolIdentityProviderAmazonProps$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderAmazonProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
clientSecretjava.lang.Stringcdk.support/lookup-entry:client-secret
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-amazon-props-builder function updates a UserPoolIdentityProviderAmazonProps$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderAmazonProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `clientSecret` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-secret` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-apple-builderclj

(build-user-pool-identity-provider-apple-builder builder id config)

The build-user-pool-identity-provider-apple-builder function updates a UserPoolIdentityProviderApple$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderApple$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
keyIdjava.lang.Stringcdk.support/lookup-entry:key-id
privateKeyjava.lang.Stringcdk.support/lookup-entry:private-key
scopesjava.util.Listcdk.support/lookup-entry:scopes
teamIdjava.lang.Stringcdk.support/lookup-entry:team-id
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-apple-builder function updates a UserPoolIdentityProviderApple$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderApple$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `keyId` | java.lang.String | [[cdk.support/lookup-entry]] | `:key-id` |
| `privateKey` | java.lang.String | [[cdk.support/lookup-entry]] | `:private-key` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `teamId` | java.lang.String | [[cdk.support/lookup-entry]] | `:team-id` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-apple-props-builderclj

(build-user-pool-identity-provider-apple-props-builder builder id config)

The build-user-pool-identity-provider-apple-props-builder function updates a UserPoolIdentityProviderAppleProps$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderAppleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
keyIdjava.lang.Stringcdk.support/lookup-entry:key-id
privateKeyjava.lang.Stringcdk.support/lookup-entry:private-key
scopesjava.util.Listcdk.support/lookup-entry:scopes
teamIdjava.lang.Stringcdk.support/lookup-entry:team-id
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-apple-props-builder function updates a UserPoolIdentityProviderAppleProps$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderAppleProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `keyId` | java.lang.String | [[cdk.support/lookup-entry]] | `:key-id` |
| `privateKey` | java.lang.String | [[cdk.support/lookup-entry]] | `:private-key` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `teamId` | java.lang.String | [[cdk.support/lookup-entry]] | `:team-id` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-facebook-builderclj

(build-user-pool-identity-provider-facebook-builder builder id config)

The build-user-pool-identity-provider-facebook-builder function updates a UserPoolIdentityProviderFacebook$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderFacebook$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
apiVersionjava.lang.Stringcdk.support/lookup-entry:api-version
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
clientSecretjava.lang.Stringcdk.support/lookup-entry:client-secret
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-facebook-builder function updates a UserPoolIdentityProviderFacebook$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderFacebook$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `apiVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:api-version` |
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `clientSecret` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-secret` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-facebook-props-builderclj

(build-user-pool-identity-provider-facebook-props-builder builder id config)

The build-user-pool-identity-provider-facebook-props-builder function updates a UserPoolIdentityProviderFacebookProps$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderFacebookProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
apiVersionjava.lang.Stringcdk.support/lookup-entry:api-version
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
clientSecretjava.lang.Stringcdk.support/lookup-entry:client-secret
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-facebook-props-builder function updates a UserPoolIdentityProviderFacebookProps$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderFacebookProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `apiVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:api-version` |
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `clientSecret` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-secret` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-google-builderclj

(build-user-pool-identity-provider-google-builder builder id config)

The build-user-pool-identity-provider-google-builder function updates a UserPoolIdentityProviderGoogle$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderGoogle$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
clientSecretjava.lang.Stringcdk.support/lookup-entry:client-secret
clientSecretValuesoftware.amazon.awscdk.SecretValuecdk.support/lookup-entry:client-secret-value
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-google-builder function updates a UserPoolIdentityProviderGoogle$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderGoogle$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `clientSecret` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-secret` |
| `clientSecretValue` | software.amazon.awscdk.SecretValue | [[cdk.support/lookup-entry]] | `:client-secret-value` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-google-props-builderclj

(build-user-pool-identity-provider-google-props-builder builder id config)

The build-user-pool-identity-provider-google-props-builder function updates a UserPoolIdentityProviderGoogleProps$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderGoogleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
clientSecretjava.lang.Stringcdk.support/lookup-entry:client-secret
clientSecretValuesoftware.amazon.awscdk.SecretValuecdk.support/lookup-entry:client-secret-value
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-google-props-builder function updates a UserPoolIdentityProviderGoogleProps$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderGoogleProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `clientSecret` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-secret` |
| `clientSecretValue` | software.amazon.awscdk.SecretValue | [[cdk.support/lookup-entry]] | `:client-secret-value` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-oidc-builderclj

(build-user-pool-identity-provider-oidc-builder builder id config)

The build-user-pool-identity-provider-oidc-builder function updates a UserPoolIdentityProviderOidc$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderOidc$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
attributeRequestMethodsoftware.amazon.awscdk.services.cognito.OidcAttributeRequestMethodcdk.api.services.cognito/oidc-attribute-request-method:attribute-request-method
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
clientSecretjava.lang.Stringcdk.support/lookup-entry:client-secret
endpointssoftware.amazon.awscdk.services.cognito.OidcEndpointscdk.support/lookup-entry:endpoints
identifiersjava.util.Listcdk.support/lookup-entry:identifiers
issuerUrljava.lang.Stringcdk.support/lookup-entry:issuer-url
namejava.lang.Stringcdk.support/lookup-entry:name
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-oidc-builder function updates a UserPoolIdentityProviderOidc$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderOidc$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `attributeRequestMethod` | software.amazon.awscdk.services.cognito.OidcAttributeRequestMethod | [[cdk.api.services.cognito/oidc-attribute-request-method]] | `:attribute-request-method` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `clientSecret` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-secret` |
| `endpoints` | software.amazon.awscdk.services.cognito.OidcEndpoints | [[cdk.support/lookup-entry]] | `:endpoints` |
| `identifiers` | java.util.List | [[cdk.support/lookup-entry]] | `:identifiers` |
| `issuerUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:issuer-url` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-oidc-props-builderclj

(build-user-pool-identity-provider-oidc-props-builder builder id config)

The build-user-pool-identity-provider-oidc-props-builder function updates a UserPoolIdentityProviderOidcProps$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderOidcProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
attributeRequestMethodsoftware.amazon.awscdk.services.cognito.OidcAttributeRequestMethodcdk.api.services.cognito/oidc-attribute-request-method:attribute-request-method
clientIdjava.lang.Stringcdk.support/lookup-entry:client-id
clientSecretjava.lang.Stringcdk.support/lookup-entry:client-secret
endpointssoftware.amazon.awscdk.services.cognito.OidcEndpointscdk.support/lookup-entry:endpoints
identifiersjava.util.Listcdk.support/lookup-entry:identifiers
issuerUrljava.lang.Stringcdk.support/lookup-entry:issuer-url
namejava.lang.Stringcdk.support/lookup-entry:name
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-oidc-props-builder function updates a UserPoolIdentityProviderOidcProps$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderOidcProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `attributeRequestMethod` | software.amazon.awscdk.services.cognito.OidcAttributeRequestMethod | [[cdk.api.services.cognito/oidc-attribute-request-method]] | `:attribute-request-method` |
| `clientId` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-id` |
| `clientSecret` | java.lang.String | [[cdk.support/lookup-entry]] | `:client-secret` |
| `endpoints` | software.amazon.awscdk.services.cognito.OidcEndpoints | [[cdk.support/lookup-entry]] | `:endpoints` |
| `identifiers` | java.util.List | [[cdk.support/lookup-entry]] | `:identifiers` |
| `issuerUrl` | java.lang.String | [[cdk.support/lookup-entry]] | `:issuer-url` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-props-builderclj

(build-user-pool-identity-provider-props-builder builder id config)

The build-user-pool-identity-provider-props-builder function updates a UserPoolIdentityProviderProps$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-props-builder function updates a UserPoolIdentityProviderProps$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-saml-builderclj

(build-user-pool-identity-provider-saml-builder builder id config)

The build-user-pool-identity-provider-saml-builder function updates a UserPoolIdentityProviderSaml$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderSaml$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
encryptedResponsesjava.lang.Booleancdk.support/lookup-entry:encrypted-responses
identifiersjava.util.Listcdk.support/lookup-entry:identifiers
idpInitiatedjava.lang.Booleancdk.support/lookup-entry:idp-initiated
idpSignoutjava.lang.Booleancdk.support/lookup-entry:idp-signout
metadatasoftware.amazon.awscdk.services.cognito.UserPoolIdentityProviderSamlMetadatacdk.support/lookup-entry:metadata
namejava.lang.Stringcdk.support/lookup-entry:name
requestSigningAlgorithmsoftware.amazon.awscdk.services.cognito.SigningAlgorithmcdk.api.services.cognito/signing-algorithm:request-signing-algorithm
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-saml-builder function updates a UserPoolIdentityProviderSaml$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderSaml$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `encryptedResponses` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:encrypted-responses` |
| `identifiers` | java.util.List | [[cdk.support/lookup-entry]] | `:identifiers` |
| `idpInitiated` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:idp-initiated` |
| `idpSignout` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:idp-signout` |
| `metadata` | software.amazon.awscdk.services.cognito.UserPoolIdentityProviderSamlMetadata | [[cdk.support/lookup-entry]] | `:metadata` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `requestSigningAlgorithm` | software.amazon.awscdk.services.cognito.SigningAlgorithm | [[cdk.api.services.cognito/signing-algorithm]] | `:request-signing-algorithm` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-identity-provider-saml-props-builderclj

(build-user-pool-identity-provider-saml-props-builder builder id config)

The build-user-pool-identity-provider-saml-props-builder function updates a UserPoolIdentityProviderSamlProps$Builder instance using the provided configuration. The function takes the UserPoolIdentityProviderSamlProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
attributeMappingsoftware.amazon.awscdk.services.cognito.AttributeMappingcdk.support/lookup-entry:attribute-mapping
encryptedResponsesjava.lang.Booleancdk.support/lookup-entry:encrypted-responses
identifiersjava.util.Listcdk.support/lookup-entry:identifiers
idpInitiatedjava.lang.Booleancdk.support/lookup-entry:idp-initiated
idpSignoutjava.lang.Booleancdk.support/lookup-entry:idp-signout
metadatasoftware.amazon.awscdk.services.cognito.UserPoolIdentityProviderSamlMetadatacdk.support/lookup-entry:metadata
namejava.lang.Stringcdk.support/lookup-entry:name
requestSigningAlgorithmsoftware.amazon.awscdk.services.cognito.SigningAlgorithmcdk.api.services.cognito/signing-algorithm:request-signing-algorithm
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
The build-user-pool-identity-provider-saml-props-builder function updates a UserPoolIdentityProviderSamlProps$Builder instance using the provided configuration.
  The function takes the UserPoolIdentityProviderSamlProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `attributeMapping` | software.amazon.awscdk.services.cognito.AttributeMapping | [[cdk.support/lookup-entry]] | `:attribute-mapping` |
| `encryptedResponses` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:encrypted-responses` |
| `identifiers` | java.util.List | [[cdk.support/lookup-entry]] | `:identifiers` |
| `idpInitiated` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:idp-initiated` |
| `idpSignout` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:idp-signout` |
| `metadata` | software.amazon.awscdk.services.cognito.UserPoolIdentityProviderSamlMetadata | [[cdk.support/lookup-entry]] | `:metadata` |
| `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
| `requestSigningAlgorithm` | software.amazon.awscdk.services.cognito.SigningAlgorithm | [[cdk.api.services.cognito/signing-algorithm]] | `:request-signing-algorithm` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
sourceraw docstring

build-user-pool-props-builderclj

(build-user-pool-props-builder builder id config)

The build-user-pool-props-builder function updates a UserPoolProps$Builder instance using the provided configuration. The function takes the UserPoolProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
accountRecoverysoftware.amazon.awscdk.services.cognito.AccountRecoverycdk.api.services.cognito/account-recovery:account-recovery
advancedSecurityModesoftware.amazon.awscdk.services.cognito.AdvancedSecurityModecdk.api.services.cognito/advanced-security-mode:advanced-security-mode
autoVerifysoftware.amazon.awscdk.services.cognito.AutoVerifiedAttrscdk.support/lookup-entry:auto-verify
customAttributesjava.util.Mapcdk.support/lookup-entry:custom-attributes
customSenderKmsKeysoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:custom-sender-kms-key
deletionProtectionjava.lang.Booleancdk.support/lookup-entry:deletion-protection
deviceTrackingsoftware.amazon.awscdk.services.cognito.DeviceTrackingcdk.support/lookup-entry:device-tracking
emailsoftware.amazon.awscdk.services.cognito.UserPoolEmailcdk.support/lookup-entry:email
enableSmsRolejava.lang.Booleancdk.support/lookup-entry:enable-sms-role
keepOriginalsoftware.amazon.awscdk.services.cognito.KeepOriginalAttrscdk.support/lookup-entry:keep-original
lambdaTriggerssoftware.amazon.awscdk.services.cognito.UserPoolTriggerscdk.support/lookup-entry:lambda-triggers
mfasoftware.amazon.awscdk.services.cognito.Mfacdk.api.services.cognito/mfa:mfa
mfaMessagejava.lang.Stringcdk.support/lookup-entry:mfa-message
mfaSecondFactorsoftware.amazon.awscdk.services.cognito.MfaSecondFactorcdk.support/lookup-entry:mfa-second-factor
passwordPolicysoftware.amazon.awscdk.services.cognito.PasswordPolicycdk.support/lookup-entry:password-policy
removalPolicysoftware.amazon.awscdk.RemovalPolicycdk.api/removal-policy:removal-policy
selfSignUpEnabledjava.lang.Booleancdk.support/lookup-entry:self-sign-up-enabled
signInAliasessoftware.amazon.awscdk.services.cognito.SignInAliasescdk.support/lookup-entry:sign-in-aliases
signInCaseSensitivejava.lang.Booleancdk.support/lookup-entry:sign-in-case-sensitive
smsRolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:sms-role
smsRoleExternalIdjava.lang.Stringcdk.support/lookup-entry:sms-role-external-id
snsRegionjava.lang.Stringcdk.support/lookup-entry:sns-region
standardAttributessoftware.amazon.awscdk.services.cognito.StandardAttributescdk.support/lookup-entry:standard-attributes
userInvitationsoftware.amazon.awscdk.services.cognito.UserInvitationConfigcdk.support/lookup-entry:user-invitation
userPoolNamejava.lang.Stringcdk.support/lookup-entry:user-pool-name
userVerificationsoftware.amazon.awscdk.services.cognito.UserVerificationConfigcdk.support/lookup-entry:user-verification
The build-user-pool-props-builder function updates a UserPoolProps$Builder instance using the provided configuration.
  The function takes the UserPoolProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `accountRecovery` | software.amazon.awscdk.services.cognito.AccountRecovery | [[cdk.api.services.cognito/account-recovery]] | `:account-recovery` |
| `advancedSecurityMode` | software.amazon.awscdk.services.cognito.AdvancedSecurityMode | [[cdk.api.services.cognito/advanced-security-mode]] | `:advanced-security-mode` |
| `autoVerify` | software.amazon.awscdk.services.cognito.AutoVerifiedAttrs | [[cdk.support/lookup-entry]] | `:auto-verify` |
| `customAttributes` | java.util.Map | [[cdk.support/lookup-entry]] | `:custom-attributes` |
| `customSenderKmsKey` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:custom-sender-kms-key` |
| `deletionProtection` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:deletion-protection` |
| `deviceTracking` | software.amazon.awscdk.services.cognito.DeviceTracking | [[cdk.support/lookup-entry]] | `:device-tracking` |
| `email` | software.amazon.awscdk.services.cognito.UserPoolEmail | [[cdk.support/lookup-entry]] | `:email` |
| `enableSmsRole` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:enable-sms-role` |
| `keepOriginal` | software.amazon.awscdk.services.cognito.KeepOriginalAttrs | [[cdk.support/lookup-entry]] | `:keep-original` |
| `lambdaTriggers` | software.amazon.awscdk.services.cognito.UserPoolTriggers | [[cdk.support/lookup-entry]] | `:lambda-triggers` |
| `mfa` | software.amazon.awscdk.services.cognito.Mfa | [[cdk.api.services.cognito/mfa]] | `:mfa` |
| `mfaMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:mfa-message` |
| `mfaSecondFactor` | software.amazon.awscdk.services.cognito.MfaSecondFactor | [[cdk.support/lookup-entry]] | `:mfa-second-factor` |
| `passwordPolicy` | software.amazon.awscdk.services.cognito.PasswordPolicy | [[cdk.support/lookup-entry]] | `:password-policy` |
| `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` |
| `selfSignUpEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:self-sign-up-enabled` |
| `signInAliases` | software.amazon.awscdk.services.cognito.SignInAliases | [[cdk.support/lookup-entry]] | `:sign-in-aliases` |
| `signInCaseSensitive` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:sign-in-case-sensitive` |
| `smsRole` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:sms-role` |
| `smsRoleExternalId` | java.lang.String | [[cdk.support/lookup-entry]] | `:sms-role-external-id` |
| `snsRegion` | java.lang.String | [[cdk.support/lookup-entry]] | `:sns-region` |
| `standardAttributes` | software.amazon.awscdk.services.cognito.StandardAttributes | [[cdk.support/lookup-entry]] | `:standard-attributes` |
| `userInvitation` | software.amazon.awscdk.services.cognito.UserInvitationConfig | [[cdk.support/lookup-entry]] | `:user-invitation` |
| `userPoolName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-name` |
| `userVerification` | software.amazon.awscdk.services.cognito.UserVerificationConfig | [[cdk.support/lookup-entry]] | `:user-verification` |
sourceraw docstring

build-user-pool-resource-server-builderclj

(build-user-pool-resource-server-builder builder id config)

The build-user-pool-resource-server-builder function updates a UserPoolResourceServer$Builder instance using the provided configuration. The function takes the UserPoolResourceServer$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
identifierjava.lang.Stringcdk.support/lookup-entry:identifier
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
userPoolResourceServerNamejava.lang.Stringcdk.support/lookup-entry:user-pool-resource-server-name
The build-user-pool-resource-server-builder function updates a UserPoolResourceServer$Builder instance using the provided configuration.
  The function takes the UserPoolResourceServer$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `identifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:identifier` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
| `userPoolResourceServerName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-resource-server-name` |
sourceraw docstring

build-user-pool-resource-server-options-builderclj

(build-user-pool-resource-server-options-builder builder id config)

The build-user-pool-resource-server-options-builder function updates a UserPoolResourceServerOptions$Builder instance using the provided configuration. The function takes the UserPoolResourceServerOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
identifierjava.lang.Stringcdk.support/lookup-entry:identifier
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolResourceServerNamejava.lang.Stringcdk.support/lookup-entry:user-pool-resource-server-name
The build-user-pool-resource-server-options-builder function updates a UserPoolResourceServerOptions$Builder instance using the provided configuration.
  The function takes the UserPoolResourceServerOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `identifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:identifier` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPoolResourceServerName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-resource-server-name` |
sourceraw docstring

build-user-pool-resource-server-props-builderclj

(build-user-pool-resource-server-props-builder builder id config)

The build-user-pool-resource-server-props-builder function updates a UserPoolResourceServerProps$Builder instance using the provided configuration. The function takes the UserPoolResourceServerProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
identifierjava.lang.Stringcdk.support/lookup-entry:identifier
scopesjava.util.Listcdk.support/lookup-entry:scopes
userPoolsoftware.amazon.awscdk.services.cognito.IUserPoolcdk.support/lookup-entry:user-pool
userPoolResourceServerNamejava.lang.Stringcdk.support/lookup-entry:user-pool-resource-server-name
The build-user-pool-resource-server-props-builder function updates a UserPoolResourceServerProps$Builder instance using the provided configuration.
  The function takes the UserPoolResourceServerProps$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `identifier` | java.lang.String | [[cdk.support/lookup-entry]] | `:identifier` |
| `scopes` | java.util.List | [[cdk.support/lookup-entry]] | `:scopes` |
| `userPool` | software.amazon.awscdk.services.cognito.IUserPool | [[cdk.support/lookup-entry]] | `:user-pool` |
| `userPoolResourceServerName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-pool-resource-server-name` |
sourceraw docstring

build-user-pool-ses-options-builderclj

(build-user-pool-ses-options-builder builder id config)

The build-user-pool-ses-options-builder function updates a UserPoolSESOptions$Builder instance using the provided configuration. The function takes the UserPoolSESOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
configurationSetNamejava.lang.Stringcdk.support/lookup-entry:configuration-set-name
fromEmailjava.lang.Stringcdk.support/lookup-entry:from-email
fromNamejava.lang.Stringcdk.support/lookup-entry:from-name
replyTojava.lang.Stringcdk.support/lookup-entry:reply-to
sesRegionjava.lang.Stringcdk.support/lookup-entry:ses-region
sesVerifiedDomainjava.lang.Stringcdk.support/lookup-entry:ses-verified-domain
The build-user-pool-ses-options-builder function updates a UserPoolSESOptions$Builder instance using the provided configuration.
  The function takes the UserPoolSESOptions$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `configurationSetName` | java.lang.String | [[cdk.support/lookup-entry]] | `:configuration-set-name` |
| `fromEmail` | java.lang.String | [[cdk.support/lookup-entry]] | `:from-email` |
| `fromName` | java.lang.String | [[cdk.support/lookup-entry]] | `:from-name` |
| `replyTo` | java.lang.String | [[cdk.support/lookup-entry]] | `:reply-to` |
| `sesRegion` | java.lang.String | [[cdk.support/lookup-entry]] | `:ses-region` |
| `sesVerifiedDomain` | java.lang.String | [[cdk.support/lookup-entry]] | `:ses-verified-domain` |
sourceraw docstring

build-user-pool-triggers-builderclj

(build-user-pool-triggers-builder builder id config)

The build-user-pool-triggers-builder function updates a UserPoolTriggers$Builder instance using the provided configuration. The function takes the UserPoolTriggers$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
createAuthChallengesoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:create-auth-challenge
customEmailSendersoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:custom-email-sender
customMessagesoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:custom-message
customSmsSendersoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:custom-sms-sender
defineAuthChallengesoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:define-auth-challenge
postAuthenticationsoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:post-authentication
postConfirmationsoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:post-confirmation
preAuthenticationsoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:pre-authentication
preSignUpsoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:pre-sign-up
preTokenGenerationsoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:pre-token-generation
userMigrationsoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:user-migration
verifyAuthChallengeResponsesoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:verify-auth-challenge-response
The build-user-pool-triggers-builder function updates a UserPoolTriggers$Builder instance using the provided configuration.
  The function takes the UserPoolTriggers$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `createAuthChallenge` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:create-auth-challenge` |
| `customEmailSender` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:custom-email-sender` |
| `customMessage` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:custom-message` |
| `customSmsSender` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:custom-sms-sender` |
| `defineAuthChallenge` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:define-auth-challenge` |
| `postAuthentication` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:post-authentication` |
| `postConfirmation` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:post-confirmation` |
| `preAuthentication` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:pre-authentication` |
| `preSignUp` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:pre-sign-up` |
| `preTokenGeneration` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:pre-token-generation` |
| `userMigration` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:user-migration` |
| `verifyAuthChallengeResponse` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:verify-auth-challenge-response` |
sourceraw docstring

build-user-verification-config-builderclj

(build-user-verification-config-builder builder id config)

The build-user-verification-config-builder function updates a UserVerificationConfig$Builder instance using the provided configuration. The function takes the UserVerificationConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.

Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

FieldDataTypeLookup FunctionData Key
emailBodyjava.lang.Stringcdk.support/lookup-entry:email-body
emailStylesoftware.amazon.awscdk.services.cognito.VerificationEmailStylecdk.api.services.cognito/verification-email-style:email-style
emailSubjectjava.lang.Stringcdk.support/lookup-entry:email-subject
smsMessagejava.lang.Stringcdk.support/lookup-entry:sms-message
The build-user-verification-config-builder function updates a UserVerificationConfig$Builder instance using the provided configuration.
  The function takes the UserVerificationConfig$Builder instance, an optional namespace to use when looking up a value in the configuration,
  and the configuration itself.

  Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:

| Field | DataType | Lookup Function | Data Key |
|---|---|---|---|
| `emailBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-body` |
| `emailStyle` | software.amazon.awscdk.services.cognito.VerificationEmailStyle | [[cdk.api.services.cognito/verification-email-style]] | `:email-style` |
| `emailSubject` | java.lang.String | [[cdk.support/lookup-entry]] | `:email-subject` |
| `smsMessage` | java.lang.String | [[cdk.support/lookup-entry]] | `:sms-message` |
sourceraw docstring

cfn-identity-pool-builderclj

(cfn-identity-pool-builder scope id config)

Creates a CfnIdentityPool$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnIdentityPool$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-identity-pool-cognito-identity-provider-property-builderclj

(cfn-identity-pool-cognito-identity-provider-property-builder id config)

Creates a CfnIdentityPool$CognitoIdentityProviderProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnIdentityPool$CognitoIdentityProviderProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-identity-pool-cognito-streams-property-builderclj

(cfn-identity-pool-cognito-streams-property-builder id config)

Creates a CfnIdentityPool$CognitoStreamsProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnIdentityPool$CognitoStreamsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-identity-pool-principal-tag-builderclj

(cfn-identity-pool-principal-tag-builder scope id config)

Creates a CfnIdentityPoolPrincipalTag$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnIdentityPoolPrincipalTag$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-identity-pool-principal-tag-props-builderclj

(cfn-identity-pool-principal-tag-props-builder id config)

Creates a CfnIdentityPoolPrincipalTagProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnIdentityPoolPrincipalTagProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-identity-pool-props-builderclj

(cfn-identity-pool-props-builder id config)

Creates a CfnIdentityPoolProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnIdentityPoolProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-identity-pool-push-sync-property-builderclj

(cfn-identity-pool-push-sync-property-builder id config)

Creates a CfnIdentityPool$PushSyncProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnIdentityPool$PushSyncProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-identity-pool-role-attachment-builderclj

(cfn-identity-pool-role-attachment-builder scope id config)

Creates a CfnIdentityPoolRoleAttachment$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnIdentityPoolRoleAttachment$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-identity-pool-role-attachment-mapping-rule-property-builderclj

(cfn-identity-pool-role-attachment-mapping-rule-property-builder id config)

Creates a CfnIdentityPoolRoleAttachment$MappingRuleProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnIdentityPoolRoleAttachment$MappingRuleProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-identity-pool-role-attachment-props-builderclj

(cfn-identity-pool-role-attachment-props-builder id config)

Creates a CfnIdentityPoolRoleAttachmentProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnIdentityPoolRoleAttachmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-identity-pool-role-attachment-role-mapping-property-builderclj

(cfn-identity-pool-role-attachment-role-mapping-property-builder id config)

Creates a CfnIdentityPoolRoleAttachment$RoleMappingProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnIdentityPoolRoleAttachment$RoleMappingProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-identity-pool-role-attachment-rules-configuration-type-property-builderclj

(cfn-identity-pool-role-attachment-rules-configuration-type-property-builder
  id
  config)

Creates a CfnIdentityPoolRoleAttachment$RulesConfigurationTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnIdentityPoolRoleAttachment$RulesConfigurationTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-log-delivery-configuration-builderclj

(cfn-log-delivery-configuration-builder scope id config)

Creates a CfnLogDeliveryConfiguration$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnLogDeliveryConfiguration$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-log-delivery-configuration-cloud-watch-logs-configuration-property-builderclj

(cfn-log-delivery-configuration-cloud-watch-logs-configuration-property-builder
  id
  config)

Creates a CfnLogDeliveryConfiguration$CloudWatchLogsConfigurationProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnLogDeliveryConfiguration$CloudWatchLogsConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-log-delivery-configuration-log-configuration-property-builderclj

(cfn-log-delivery-configuration-log-configuration-property-builder id config)

Creates a CfnLogDeliveryConfiguration$LogConfigurationProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnLogDeliveryConfiguration$LogConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-log-delivery-configuration-props-builderclj

(cfn-log-delivery-configuration-props-builder id config)

Creates a CfnLogDeliveryConfigurationProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnLogDeliveryConfigurationProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-account-recovery-setting-property-builderclj

(cfn-user-pool-account-recovery-setting-property-builder id config)

Creates a CfnUserPool$AccountRecoverySettingProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$AccountRecoverySettingProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-admin-create-user-config-property-builderclj

(cfn-user-pool-admin-create-user-config-property-builder id config)

Creates a CfnUserPool$AdminCreateUserConfigProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$AdminCreateUserConfigProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-builderclj

(cfn-user-pool-builder scope id config)

Creates a CfnUserPool$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnUserPool$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-client-analytics-configuration-property-builderclj

(cfn-user-pool-client-analytics-configuration-property-builder id config)

Creates a CfnUserPoolClient$AnalyticsConfigurationProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolClient$AnalyticsConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-client-builderclj

(cfn-user-pool-client-builder scope id config)

Creates a CfnUserPoolClient$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnUserPoolClient$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-client-props-builderclj

(cfn-user-pool-client-props-builder id config)

Creates a CfnUserPoolClientProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolClientProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-client-token-validity-units-property-builderclj

(cfn-user-pool-client-token-validity-units-property-builder id config)

Creates a CfnUserPoolClient$TokenValidityUnitsProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolClient$TokenValidityUnitsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-custom-email-sender-property-builderclj

(cfn-user-pool-custom-email-sender-property-builder id config)

Creates a CfnUserPool$CustomEmailSenderProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$CustomEmailSenderProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-custom-sms-sender-property-builderclj

(cfn-user-pool-custom-sms-sender-property-builder id config)

Creates a CfnUserPool$CustomSMSSenderProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$CustomSMSSenderProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-device-configuration-property-builderclj

(cfn-user-pool-device-configuration-property-builder id config)

Creates a CfnUserPool$DeviceConfigurationProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$DeviceConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-domain-builderclj

(cfn-user-pool-domain-builder scope id config)

Creates a CfnUserPoolDomain$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnUserPoolDomain$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-domain-custom-domain-config-type-property-builderclj

(cfn-user-pool-domain-custom-domain-config-type-property-builder id config)

Creates a CfnUserPoolDomain$CustomDomainConfigTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolDomain$CustomDomainConfigTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-domain-props-builderclj

(cfn-user-pool-domain-props-builder id config)

Creates a CfnUserPoolDomainProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolDomainProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-email-configuration-property-builderclj

(cfn-user-pool-email-configuration-property-builder id config)

Creates a CfnUserPool$EmailConfigurationProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$EmailConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-group-builderclj

(cfn-user-pool-group-builder scope id config)

Creates a CfnUserPoolGroup$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnUserPoolGroup$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-group-props-builderclj

(cfn-user-pool-group-props-builder id config)

Creates a CfnUserPoolGroupProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolGroupProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-identity-provider-builderclj

(cfn-user-pool-identity-provider-builder scope id config)

Creates a CfnUserPoolIdentityProvider$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnUserPoolIdentityProvider$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-identity-provider-props-builderclj

(cfn-user-pool-identity-provider-props-builder id config)

Creates a CfnUserPoolIdentityProviderProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolIdentityProviderProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-invite-message-template-property-builderclj

(cfn-user-pool-invite-message-template-property-builder id config)

Creates a CfnUserPool$InviteMessageTemplateProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$InviteMessageTemplateProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-lambda-config-property-builderclj

(cfn-user-pool-lambda-config-property-builder id config)

Creates a CfnUserPool$LambdaConfigProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$LambdaConfigProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-number-attribute-constraints-property-builderclj

(cfn-user-pool-number-attribute-constraints-property-builder id config)

Creates a CfnUserPool$NumberAttributeConstraintsProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$NumberAttributeConstraintsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-password-policy-property-builderclj

(cfn-user-pool-password-policy-property-builder id config)

Creates a CfnUserPool$PasswordPolicyProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$PasswordPolicyProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-policies-property-builderclj

(cfn-user-pool-policies-property-builder id config)

Creates a CfnUserPool$PoliciesProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$PoliciesProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-pre-token-generation-config-property-builderclj

(cfn-user-pool-pre-token-generation-config-property-builder id config)

Creates a CfnUserPool$PreTokenGenerationConfigProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$PreTokenGenerationConfigProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-props-builderclj

(cfn-user-pool-props-builder id config)

Creates a CfnUserPoolProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-recovery-option-property-builderclj

(cfn-user-pool-recovery-option-property-builder id config)

Creates a CfnUserPool$RecoveryOptionProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$RecoveryOptionProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-resource-server-builderclj

(cfn-user-pool-resource-server-builder scope id config)

Creates a CfnUserPoolResourceServer$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnUserPoolResourceServer$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-resource-server-props-builderclj

(cfn-user-pool-resource-server-props-builder id config)

Creates a CfnUserPoolResourceServerProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolResourceServerProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-resource-server-resource-server-scope-type-property-builderclj

(cfn-user-pool-resource-server-resource-server-scope-type-property-builder
  id
  config)

Creates a CfnUserPoolResourceServer$ResourceServerScopeTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolResourceServer$ResourceServerScopeTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-risk-configuration-attachment-account-takeover-action-type-property-builderclj

(cfn-user-pool-risk-configuration-attachment-account-takeover-action-type-property-builder
  id
  config)

Creates a CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-risk-configuration-attachment-account-takeover-actions-type-property-builderclj

(cfn-user-pool-risk-configuration-attachment-account-takeover-actions-type-property-builder
  id
  config)

Creates a CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionsTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolRiskConfigurationAttachment$AccountTakeoverActionsTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-risk-configuration-attachment-account-takeover-risk-configuration-type-property-builderclj

(cfn-user-pool-risk-configuration-attachment-account-takeover-risk-configuration-type-property-builder
  id
  config)

Creates a CfnUserPoolRiskConfigurationAttachment$AccountTakeoverRiskConfigurationTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolRiskConfigurationAttachment$AccountTakeoverRiskConfigurationTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-risk-configuration-attachment-builderclj

(cfn-user-pool-risk-configuration-attachment-builder scope id config)

Creates a CfnUserPoolRiskConfigurationAttachment$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnUserPoolRiskConfigurationAttachment$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-risk-configuration-attachment-compromised-credentials-actions-type-property-builderclj

(cfn-user-pool-risk-configuration-attachment-compromised-credentials-actions-type-property-builder
  id
  config)

Creates a CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsActionsTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsActionsTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-risk-configuration-attachment-compromised-credentials-risk-configuration-type-property-builderclj

(cfn-user-pool-risk-configuration-attachment-compromised-credentials-risk-configuration-type-property-builder
  id
  config)

Creates a CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsRiskConfigurationTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolRiskConfigurationAttachment$CompromisedCredentialsRiskConfigurationTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-risk-configuration-attachment-notify-configuration-type-property-builderclj

(cfn-user-pool-risk-configuration-attachment-notify-configuration-type-property-builder
  id
  config)

Creates a CfnUserPoolRiskConfigurationAttachment$NotifyConfigurationTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolRiskConfigurationAttachment$NotifyConfigurationTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-risk-configuration-attachment-notify-email-type-property-builderclj

(cfn-user-pool-risk-configuration-attachment-notify-email-type-property-builder
  id
  config)

Creates a CfnUserPoolRiskConfigurationAttachment$NotifyEmailTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolRiskConfigurationAttachment$NotifyEmailTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-risk-configuration-attachment-props-builderclj

(cfn-user-pool-risk-configuration-attachment-props-builder id config)

Creates a CfnUserPoolRiskConfigurationAttachmentProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolRiskConfigurationAttachmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-risk-configuration-attachment-risk-exception-configuration-type-property-builderclj

(cfn-user-pool-risk-configuration-attachment-risk-exception-configuration-type-property-builder
  id
  config)

Creates a CfnUserPoolRiskConfigurationAttachment$RiskExceptionConfigurationTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolRiskConfigurationAttachment$RiskExceptionConfigurationTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-schema-attribute-property-builderclj

(cfn-user-pool-schema-attribute-property-builder id config)

Creates a CfnUserPool$SchemaAttributeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$SchemaAttributeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-sms-configuration-property-builderclj

(cfn-user-pool-sms-configuration-property-builder id config)

Creates a CfnUserPool$SmsConfigurationProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$SmsConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-string-attribute-constraints-property-builderclj

(cfn-user-pool-string-attribute-constraints-property-builder id config)

Creates a CfnUserPool$StringAttributeConstraintsProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$StringAttributeConstraintsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-ui-customization-attachment-builderclj

(cfn-user-pool-ui-customization-attachment-builder scope id config)

Creates a CfnUserPoolUICustomizationAttachment$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnUserPoolUICustomizationAttachment$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-ui-customization-attachment-props-builderclj

(cfn-user-pool-ui-customization-attachment-props-builder id config)

Creates a CfnUserPoolUICustomizationAttachmentProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolUICustomizationAttachmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-user-attribute-type-property-builderclj

(cfn-user-pool-user-attribute-type-property-builder id config)

Creates a CfnUserPoolUser$AttributeTypeProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolUser$AttributeTypeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-user-attribute-update-settings-property-builderclj

(cfn-user-pool-user-attribute-update-settings-property-builder id config)

Creates a CfnUserPool$UserAttributeUpdateSettingsProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$UserAttributeUpdateSettingsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-user-builderclj

(cfn-user-pool-user-builder scope id config)

Creates a CfnUserPoolUser$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnUserPoolUser$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-user-pool-add-ons-property-builderclj

(cfn-user-pool-user-pool-add-ons-property-builder id config)

Creates a CfnUserPool$UserPoolAddOnsProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$UserPoolAddOnsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-user-props-builderclj

(cfn-user-pool-user-props-builder id config)

Creates a CfnUserPoolUserProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolUserProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-user-to-group-attachment-builderclj

(cfn-user-pool-user-to-group-attachment-builder scope id config)

Creates a CfnUserPoolUserToGroupAttachment$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `CfnUserPoolUserToGroupAttachment$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-user-to-group-attachment-props-builderclj

(cfn-user-pool-user-to-group-attachment-props-builder id config)

Creates a CfnUserPoolUserToGroupAttachmentProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPoolUserToGroupAttachmentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-username-configuration-property-builderclj

(cfn-user-pool-username-configuration-property-builder id config)

Creates a CfnUserPool$UsernameConfigurationProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$UsernameConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cfn-user-pool-verification-message-template-property-builderclj

(cfn-user-pool-verification-message-template-property-builder id config)

Creates a CfnUserPool$VerificationMessageTemplateProperty$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CfnUserPool$VerificationMessageTemplateProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

cognito-domain-options-builderclj

(cognito-domain-options-builder id config)

Creates a CognitoDomainOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CognitoDomainOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

custom-attribute-config-builderclj

(custom-attribute-config-builder id config)

Creates a CustomAttributeConfig$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CustomAttributeConfig$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

custom-attribute-props-builderclj

(custom-attribute-props-builder id config)

Creates a CustomAttributeProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CustomAttributeProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

custom-domain-options-builderclj

(custom-domain-options-builder id config)

Creates a CustomDomainOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `CustomDomainOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

date-time-attribute-builderclj

(date-time-attribute-builder id config)

Creates a DateTimeAttribute$Builder instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `DateTimeAttribute$Builder` instance using a no-argument create, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

device-tracking-builderclj

(device-tracking-builder id config)

Creates a DeviceTracking$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `DeviceTracking$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

email-settings-builderclj

(email-settings-builder id config)

Creates a EmailSettings$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `EmailSettings$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

keep-original-attrs-builderclj

(keep-original-attrs-builder id config)

Creates a KeepOriginalAttrs$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `KeepOriginalAttrs$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

lambda-versionclj

(lambda-version config id item-key)

The lambda-version function data interprets values in the provided config data into a LambdaVersion instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of LambdaVersion - the value is returned.
  • is :v1-0 - LambdaVersion/V1_0 is returned
  • is :v2-0 - LambdaVersion/V2_0 is returned

If a value is not found or matches the above criteria, nil is returned.

The `lambda-version` function data interprets values in the provided config data into a 
`LambdaVersion` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `LambdaVersion` - the value is returned.
* is `:v1-0` - `LambdaVersion/V1_0` is returned
* is `:v2-0` - `LambdaVersion/V2_0` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

mfaclj

(mfa config id item-key)

The mfa function data interprets values in the provided config data into a Mfa instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of Mfa - the value is returned.
  • is :off - Mfa/OFF is returned
  • is :optional - Mfa/OPTIONAL is returned
  • is :required - Mfa/REQUIRED is returned

If a value is not found or matches the above criteria, nil is returned.

The `mfa` function data interprets values in the provided config data into a 
`Mfa` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `Mfa` - the value is returned.
* is `:off` - `Mfa/OFF` is returned
* is `:optional` - `Mfa/OPTIONAL` is returned
* is `:required` - `Mfa/REQUIRED` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

mfa-second-factor-builderclj

(mfa-second-factor-builder id config)

Creates a MfaSecondFactor$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `MfaSecondFactor$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

number-attribute-builderclj

(number-attribute-builder id config)

Creates a NumberAttribute$Builder instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `NumberAttribute$Builder` instance using a no-argument create, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

number-attribute-constraints-builderclj

(number-attribute-constraints-builder id config)

Creates a NumberAttributeConstraints$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `NumberAttributeConstraints$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

number-attribute-props-builderclj

(number-attribute-props-builder id config)

Creates a NumberAttributeProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `NumberAttributeProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

o-auth-flows-builderclj

(o-auth-flows-builder id config)

Creates a OAuthFlows$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `OAuthFlows$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

o-auth-settings-builderclj

(o-auth-settings-builder id config)

Creates a OAuthSettings$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `OAuthSettings$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

oidc-attribute-request-methodclj

(oidc-attribute-request-method config id item-key)

The oidc-attribute-request-method function data interprets values in the provided config data into a OidcAttributeRequestMethod instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of OidcAttributeRequestMethod - the value is returned.
  • is :get - OidcAttributeRequestMethod/GET is returned
  • is :post - OidcAttributeRequestMethod/POST is returned

If a value is not found or matches the above criteria, nil is returned.

The `oidc-attribute-request-method` function data interprets values in the provided config data into a 
`OidcAttributeRequestMethod` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `OidcAttributeRequestMethod` - the value is returned.
* is `:get` - `OidcAttributeRequestMethod/GET` is returned
* is `:post` - `OidcAttributeRequestMethod/POST` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

oidc-endpoints-builderclj

(oidc-endpoints-builder id config)

Creates a OidcEndpoints$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `OidcEndpoints$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

password-policy-builderclj

(password-policy-builder id config)

Creates a PasswordPolicy$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `PasswordPolicy$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

resource-server-scope-builderclj

(resource-server-scope-builder id config)

Creates a ResourceServerScope$Builder instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `ResourceServerScope$Builder` instance using a no-argument create, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

resource-server-scope-props-builderclj

(resource-server-scope-props-builder id config)

Creates a ResourceServerScopeProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `ResourceServerScopeProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

sign-in-aliases-builderclj

(sign-in-aliases-builder id config)

Creates a SignInAliases$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `SignInAliases$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

sign-in-url-options-builderclj

(sign-in-url-options-builder id config)

Creates a SignInUrlOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `SignInUrlOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

signing-algorithmclj

(signing-algorithm config id item-key)

The signing-algorithm function data interprets values in the provided config data into a SigningAlgorithm instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of SigningAlgorithm - the value is returned.
  • is :rsa-sha256 - SigningAlgorithm/RSA_SHA256 is returned

If a value is not found or matches the above criteria, nil is returned.

The `signing-algorithm` function data interprets values in the provided config data into a 
`SigningAlgorithm` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `SigningAlgorithm` - the value is returned.
* is `:rsa-sha256` - `SigningAlgorithm/RSA_SHA256` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

standard-attribute-builderclj

(standard-attribute-builder id config)

Creates a StandardAttribute$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `StandardAttribute$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

standard-attributes-builderclj

(standard-attributes-builder id config)

Creates a StandardAttributes$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `StandardAttributes$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

standard-attributes-mask-builderclj

(standard-attributes-mask-builder id config)

Creates a StandardAttributesMask$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `StandardAttributesMask$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

string-attribute-builderclj

(string-attribute-builder id config)

Creates a StringAttribute$Builder instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `StringAttribute$Builder` instance using a no-argument create, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

string-attribute-constraints-builderclj

(string-attribute-constraints-builder id config)

Creates a StringAttributeConstraints$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `StringAttributeConstraints$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

string-attribute-props-builderclj

(string-attribute-props-builder id config)

Creates a StringAttributeProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `StringAttributeProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-invitation-config-builderclj

(user-invitation-config-builder id config)

Creates a UserInvitationConfig$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserInvitationConfig$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-builderclj

(user-pool-builder scope id config)

Creates a UserPool$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `UserPool$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-client-builderclj

(user-pool-client-builder scope id config)

Creates a UserPoolClient$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `UserPoolClient$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-client-options-builderclj

(user-pool-client-options-builder id config)

Creates a UserPoolClientOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolClientOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-client-props-builderclj

(user-pool-client-props-builder id config)

Creates a UserPoolClientProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolClientProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-domain-builderclj

(user-pool-domain-builder scope id config)

Creates a UserPoolDomain$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `UserPoolDomain$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-domain-options-builderclj

(user-pool-domain-options-builder id config)

Creates a UserPoolDomainOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolDomainOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-domain-props-builderclj

(user-pool-domain-props-builder id config)

Creates a UserPoolDomainProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolDomainProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-amazon-builderclj

(user-pool-identity-provider-amazon-builder scope id config)

Creates a UserPoolIdentityProviderAmazon$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `UserPoolIdentityProviderAmazon$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-amazon-props-builderclj

(user-pool-identity-provider-amazon-props-builder id config)

Creates a UserPoolIdentityProviderAmazonProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolIdentityProviderAmazonProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-apple-builderclj

(user-pool-identity-provider-apple-builder scope id config)

Creates a UserPoolIdentityProviderApple$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `UserPoolIdentityProviderApple$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-apple-props-builderclj

(user-pool-identity-provider-apple-props-builder id config)

Creates a UserPoolIdentityProviderAppleProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolIdentityProviderAppleProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-facebook-builderclj

(user-pool-identity-provider-facebook-builder scope id config)

Creates a UserPoolIdentityProviderFacebook$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `UserPoolIdentityProviderFacebook$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-facebook-props-builderclj

(user-pool-identity-provider-facebook-props-builder id config)

Creates a UserPoolIdentityProviderFacebookProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolIdentityProviderFacebookProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-google-builderclj

(user-pool-identity-provider-google-builder scope id config)

Creates a UserPoolIdentityProviderGoogle$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `UserPoolIdentityProviderGoogle$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-google-props-builderclj

(user-pool-identity-provider-google-props-builder id config)

Creates a UserPoolIdentityProviderGoogleProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolIdentityProviderGoogleProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-oidc-builderclj

(user-pool-identity-provider-oidc-builder scope id config)

Creates a UserPoolIdentityProviderOidc$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `UserPoolIdentityProviderOidc$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-oidc-props-builderclj

(user-pool-identity-provider-oidc-props-builder id config)

Creates a UserPoolIdentityProviderOidcProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolIdentityProviderOidcProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-props-builderclj

(user-pool-identity-provider-props-builder id config)

Creates a UserPoolIdentityProviderProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolIdentityProviderProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-saml-builderclj

(user-pool-identity-provider-saml-builder scope id config)

Creates a UserPoolIdentityProviderSaml$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `UserPoolIdentityProviderSaml$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-identity-provider-saml-metadata-typeclj

(user-pool-identity-provider-saml-metadata-type config id item-key)

The user-pool-identity-provider-saml-metadata-type function data interprets values in the provided config data into a UserPoolIdentityProviderSamlMetadataType instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of UserPoolIdentityProviderSamlMetadataType - the value is returned.
  • is :file - UserPoolIdentityProviderSamlMetadataType/FILE is returned
  • is :url - UserPoolIdentityProviderSamlMetadataType/URL is returned

If a value is not found or matches the above criteria, nil is returned.

The `user-pool-identity-provider-saml-metadata-type` function data interprets values in the provided config data into a 
`UserPoolIdentityProviderSamlMetadataType` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `UserPoolIdentityProviderSamlMetadataType` - the value is returned.
* is `:file` - `UserPoolIdentityProviderSamlMetadataType/FILE` is returned
* is `:url` - `UserPoolIdentityProviderSamlMetadataType/URL` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

user-pool-identity-provider-saml-props-builderclj

(user-pool-identity-provider-saml-props-builder id config)

Creates a UserPoolIdentityProviderSamlProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolIdentityProviderSamlProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-props-builderclj

(user-pool-props-builder id config)

Creates a UserPoolProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-resource-server-builderclj

(user-pool-resource-server-builder scope id config)

Creates a UserPoolResourceServer$Builder instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |

Creates a  `UserPoolResourceServer$Builder` instance using a scope and ID, applies the data configuration, then builds it.  Takes the following arguments: 
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-resource-server-options-builderclj

(user-pool-resource-server-options-builder id config)

Creates a UserPoolResourceServerOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolResourceServerOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-resource-server-props-builderclj

(user-pool-resource-server-props-builder id config)

Creates a UserPoolResourceServerProps$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolResourceServerProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-ses-options-builderclj

(user-pool-ses-options-builder id config)

Creates a UserPoolSESOptions$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolSESOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-pool-triggers-builderclj

(user-pool-triggers-builder id config)

Creates a UserPoolTriggers$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserPoolTriggers$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

user-verification-config-builderclj

(user-verification-config-builder id config)

Creates a UserVerificationConfig$Builder instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData configuration
Creates a  `UserVerificationConfig$Builder` instance using a no-argument constructor, applies the data configuration, then builds it.  Takes the following arguments: 

| Argument | DataType | Description |
|---|---|---|
| id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
| config | map | Data configuration |
sourceraw docstring

verification-email-styleclj

(verification-email-style config id item-key)

The verification-email-style function data interprets values in the provided config data into a VerificationEmailStyle instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the cdk.support/lookup-entry function on the data with the provided namespace id and item-key. The found value is interpretted as follows:

  • instance of VerificationEmailStyle - the value is returned.
  • is :code - VerificationEmailStyle/CODE is returned
  • is :link - VerificationEmailStyle/LINK is returned

If a value is not found or matches the above criteria, nil is returned.

The `verification-email-style` function data interprets values in the provided config data into a 
`VerificationEmailStyle` instance.  This simplifies the use of keywords in place of actual enum values in 
the configuration provided to builders.  The value is found using the `cdk.support/lookup-entry` 
function on the data with the provided namespace id and item-key.  The found value is interpretted as follows: 

* instance of `VerificationEmailStyle` - the value is returned.
* is `:code` - `VerificationEmailStyle/CODE` is returned
* is `:link` - `VerificationEmailStyle/LINK` is returned

 If a value is not found or matches the above criteria, nil is returned.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close