BaseUrlOptions¶
-
class
aws_cdk.aws_cognito.
BaseUrlOptions
(*, fips=None)¶ Bases:
object
Options to customize the behaviour of
baseUrl()
.- Parameters
fips (
Optional
[bool
]) – Whether to return the FIPS-compliant endpoint. Default: return the standard URL- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_cognito as cognito base_url_options = cognito.BaseUrlOptions( fips=False )
Attributes
-
fips
¶ Whether to return the FIPS-compliant endpoint.
- Default
return the standard URL
- Return type
Optional
[bool
]