Interface CfnPlugin.BasicAuthConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlugin.BasicAuthConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnPlugin
@Stability(Stable)
public static interface CfnPlugin.BasicAuthConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Information about the basic authentication credentials used to configure a plugin.
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.*; BasicAuthConfigurationProperty basicAuthConfigurationProperty = BasicAuthConfigurationProperty.builder() .roleArn("roleArn") .secretArn("secretArn") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPlugin.BasicAuthConfigurationProperty
static final class
An implementation forCfnPlugin.BasicAuthConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The ARN of an IAM role used by Amazon Q Business to access the basic authentication credentials stored in a Secrets Manager secret.The ARN of the Secrets Manager secret that stores the basic authentication credentials used for plugin configuration..Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRoleArn
The ARN of an IAM role used by Amazon Q Business to access the basic authentication credentials stored in a Secrets Manager secret.- See Also:
-
getSecretArn
The ARN of the Secrets Manager secret that stores the basic authentication credentials used for plugin configuration..- See Also:
-
builder
-