Interface BaseUrlOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
SignInUrlOptions
- All Known Implementing Classes:
BaseUrlOptions.Jsii$Proxy
,SignInUrlOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:06.297Z")
@Stability(Stable)
public interface BaseUrlOptions
extends software.amazon.jsii.JsiiSerializable
Options to customize the behaviour of
baseUrl()
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cognito.*; BaseUrlOptions baseUrlOptions = BaseUrlOptions.builder() .fips(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forBaseUrlOptions
static final class
An implementation forBaseUrlOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic BaseUrlOptions.Builder
builder()
default Boolean
getFips()
Whether to return the FIPS-compliant endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFips
Whether to return the FIPS-compliant endpoint.Default: return the standard URL
-
builder
- Returns:
- a
BaseUrlOptions.Builder
ofBaseUrlOptions
-