Interface CfnWebExperienceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebExperienceProps.Jsii$Proxy
CfnWebExperience.
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.qbusiness.*;
CfnWebExperienceProps cfnWebExperienceProps = CfnWebExperienceProps.builder()
.applicationId("applicationId")
// the properties below are optional
.browserExtensionConfiguration(BrowserExtensionConfigurationProperty.builder()
.enabledBrowserExtensions(List.of("enabledBrowserExtensions"))
.build())
.customizationConfiguration(CustomizationConfigurationProperty.builder()
.customCssUrl("customCssUrl")
.faviconUrl("faviconUrl")
.fontUrl("fontUrl")
.logoUrl("logoUrl")
.build())
.identityProviderConfiguration(IdentityProviderConfigurationProperty.builder()
.openIdConnectConfiguration(OpenIDConnectProviderConfigurationProperty.builder()
.secretsArn("secretsArn")
.secretsRole("secretsRole")
.build())
.samlConfiguration(SamlProviderConfigurationProperty.builder()
.authenticationUrl("authenticationUrl")
.build())
.build())
.origins(List.of("origins"))
.roleArn("roleArn")
.samplePromptsControlMode("samplePromptsControlMode")
.subtitle("subtitle")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.title("title")
.welcomeMessage("welcomeMessage")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWebExperiencePropsstatic final classAn implementation forCfnWebExperienceProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The identifier of the Amazon Q Business web experience.default ObjectThe container for browser extension configuration for an Amazon Q Business web experience.default ObjectContains the configuration information to customize the logo, font, and color of an Amazon Q Business web experience with individual files for each property or a CSS file for them all.default ObjectProvides information about the identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.Sets the website domain origins that are allowed to embed the Amazon Q Business web experience.default StringThe Amazon Resource Name (ARN) of the service role attached to your web experience.default StringDetermines whether sample prompts are enabled in the web experience for an end user.default StringA subtitle to personalize your Amazon Q Business web experience.getTags()A list of key-value pairs that identify or categorize your Amazon Q Business web experience.default StringgetTitle()The title for your Amazon Q Business web experience.default StringA message in an Amazon Q Business web experience.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationId
The identifier of the Amazon Q Business web experience.- See Also:
-
getBrowserExtensionConfiguration
The container for browser extension configuration for an Amazon Q Business web experience.Returns union: either
IResolvableorCfnWebExperience.BrowserExtensionConfigurationProperty- See Also:
-
getCustomizationConfiguration
Contains the configuration information to customize the logo, font, and color of an Amazon Q Business web experience with individual files for each property or a CSS file for them all.Returns union: either
IResolvableorCfnWebExperience.CustomizationConfigurationProperty- See Also:
-
getIdentityProviderConfiguration
Provides information about the identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.Returns union: either
IResolvableorCfnWebExperience.IdentityProviderConfigurationProperty- See Also:
-
getOrigins
Sets the website domain origins that are allowed to embed the Amazon Q Business web experience.The domain origin refers to the base URL for accessing a website including the protocol (
http/https), the domain name, and the port number (if specified).You must only submit a base URL and not a full path. For example,
https://docs.aws.amazon.com.- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of the service role attached to your web experience.The
roleArnparameter is required when your Amazon Q Business application is created with IAM Identity Center. It is not required for SAML-based applications.- See Also:
-
getSamplePromptsControlMode
Determines whether sample prompts are enabled in the web experience for an end user.- See Also:
-
getSubtitle
A subtitle to personalize your Amazon Q Business web experience.- See Also:
-
getTags
A list of key-value pairs that identify or categorize your Amazon Q Business web experience.You can also use tags to help control access to the web experience. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + -
- See Also:
-
getTitle
The title for your Amazon Q Business web experience.- See Also:
-
getWelcomeMessage
A message in an Amazon Q Business web experience.- See Also:
-
builder
- Returns:
- a
CfnWebExperienceProps.BuilderofCfnWebExperienceProps
-