Interface ExternalUrlConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExternalUrlConfig.Builder,ExternalUrlConfig>,SdkBuilder<ExternalUrlConfig.Builder,ExternalUrlConfig>,SdkPojo
- Enclosing class:
- ExternalUrlConfig
public static interface ExternalUrlConfig.Builder extends SdkPojo, CopyableBuilder<ExternalUrlConfig.Builder,ExternalUrlConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExternalUrlConfig.BuilderaccessUrl(String accessUrl)The URL to access the application.ExternalUrlConfig.BuilderapprovedOrigins(String... approvedOrigins)Additional URLs to allow list if different than the access URL.ExternalUrlConfig.BuilderapprovedOrigins(Collection<String> approvedOrigins)Additional URLs to allow list if different than the access URL.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
accessUrl
ExternalUrlConfig.Builder accessUrl(String accessUrl)
The URL to access the application.
- Parameters:
accessUrl- The URL to access the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
approvedOrigins
ExternalUrlConfig.Builder approvedOrigins(Collection<String> approvedOrigins)
Additional URLs to allow list if different than the access URL.
- Parameters:
approvedOrigins- Additional URLs to allow list if different than the access URL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
approvedOrigins
ExternalUrlConfig.Builder approvedOrigins(String... approvedOrigins)
Additional URLs to allow list if different than the access URL.
- Parameters:
approvedOrigins- Additional URLs to allow list if different than the access URL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-