Interface CfnWebExperienceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebExperienceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:13.697Z")
@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
.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 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:
-
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.BuilderofCfnWebExperienceProps
-