Interface CfnWebExperienceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebExperienceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-16T11:43:19.687Z")
@Stability(Stable)
public interface CfnWebExperienceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
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 class
A builder forCfnWebExperienceProps
static final class
An implementation forCfnWebExperienceProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The identifier of the Amazon Q Business web experience.default Object
The container for browser extension configuration for an Amazon Q Business web experience.default Object
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.default Object
Provides 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 String
The Amazon Resource Name (ARN) of the service role attached to your web experience.default String
Determines whether sample prompts are enabled in the web experience for an end user.default String
A 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 String
getTitle()
The title for your Amazon Q Business web experience.default String
A 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.- 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.- See Also:
-
getIdentityProviderConfiguration
Provides information about the identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.- 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.You must provide this value if you're using IAM Identity Center to manage end user access to your application. If you're using legacy identity management to manage user access, you don't need to provide this value.
- 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.Builder
ofCfnWebExperienceProps
-