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.
(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:
AccountRecovery
- the value is returned.:none
- AccountRecovery/NONE
is returned:email-only
- AccountRecovery/EMAIL_ONLY
is returned:phone-only-without-mfa
- AccountRecovery/PHONE_ONLY_WITHOUT_MFA
is returned:phone-without-mfa-and-email
- AccountRecovery/PHONE_WITHOUT_MFA_AND_EMAIL
is returned:phone-and-email
- AccountRecovery/PHONE_AND_EMAIL
is returned:email-and-phone-without-mfa
- AccountRecovery/EMAIL_AND_PHONE_WITHOUT_MFA
is returnedIf 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.
(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:
AdvancedSecurityMode
- the value is returned.:off
- AdvancedSecurityMode/OFF
is returned:audit
- AdvancedSecurityMode/AUDIT
is returned:enforced
- AdvancedSecurityMode/ENFORCED
is returnedIf 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.
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
email | java.lang.Boolean | cdk.support/lookup-entry | :email |
phone | java.lang.Boolean | cdk.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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
fips | java.lang.Boolean | cdk.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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
mutable | java.lang.Boolean | cdk.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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
rules | software.amazon.awscdk.IResolvable | cdk.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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
logGroupArn | java.lang.String | cdk.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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
recoveryMechanisms | software.amazon.awscdk.IResolvable | cdk.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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
certificateArn | java.lang.String | cdk.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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
passwordPolicy | software.amazon.awscdk.services.cognito.CfnUserPool$PasswordPolicyProperty | cdk.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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
priority | java.lang.Number | cdk.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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
eventAction | java.lang.String | cdk.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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
value | java.lang.String | cdk.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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
attributesRequireVerificationBeforeUpdate | java.util.List | cdk.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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
advancedSecurityMode | java.lang.String | cdk.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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
caseSensitive | java.lang.Boolean | cdk.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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
domainPrefix | java.lang.String | cdk.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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
mutable | java.lang.Boolean | cdk.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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
mutable | java.lang.Boolean | cdk.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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
email | java.lang.Boolean | cdk.support/lookup-entry | :email |
phone | java.lang.Boolean | cdk.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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
otp | java.lang.Boolean | cdk.support/lookup-entry | :otp |
sms | java.lang.Boolean | cdk.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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
max | java.lang.Number | cdk.support/lookup-entry | :max |
min | java.lang.Number | cdk.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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
mutable | java.lang.Boolean | cdk.support/lookup-entry | :mutable |
required | java.lang.Boolean | cdk.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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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:
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 |
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` |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
LambdaVersion
- the value is returned.:v1-0
- LambdaVersion/V1_0
is returned:v2-0
- LambdaVersion/V2_0
is returnedIf 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.
(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:
Mfa
- the value is returned.:off
- Mfa/OFF
is returned:optional
- Mfa/OPTIONAL
is returned:required
- Mfa/REQUIRED
is returnedIf 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.
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
OidcAttributeRequestMethod
- the value is returned.:get
- OidcAttributeRequestMethod/GET
is returned:post
- OidcAttributeRequestMethod/POST
is returnedIf 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.
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
SigningAlgorithm
- the value is returned.:rsa-sha256
- SigningAlgorithm/RSA_SHA256
is returnedIf 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.
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
UserPoolIdentityProviderSamlMetadataType
- the value is returned.:file
- UserPoolIdentityProviderSamlMetadataType/FILE
is returned:url
- UserPoolIdentityProviderSamlMetadataType/URL
is returnedIf 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.
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data 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 |
(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:
VerificationEmailStyle
- the value is returned.:code
- VerificationEmailStyle/CODE
is returned:link
- VerificationEmailStyle/LINK
is returnedIf 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.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close