Interface CfnApplicationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:42.843Z")
@Stability(Stable)
public interface CfnApplicationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApplication.
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.opensearchservice.*;
CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
.name("name")
// the properties below are optional
.appConfigs(List.of(AppConfigProperty.builder()
.key("key")
.value("value")
.build()))
.dataSources(List.of(DataSourceProperty.builder()
.dataSourceArn("dataSourceArn")
// the properties below are optional
.dataSourceDescription("dataSourceDescription")
.build()))
.endpoint("endpoint")
.iamIdentityCenterOptions(IamIdentityCenterOptionsProperty.builder()
.enabled(false)
.iamIdentityCenterInstanceArn("iamIdentityCenterInstanceArn")
.iamRoleForIdentityCenterApplicationArn("iamRoleForIdentityCenterApplicationArn")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationPropsstatic final classAn implementation forCfnApplicationProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApplicationProps.Builderbuilder()default ObjectList of application configurations.default ObjectList of data sources.default StringThe endpoint URL of an OpenSearch application.default ObjectSettings container for integrating IAM Identity Center with OpenSearch UI applications, which enables enabling secure user authentication and access control across multiple data sources.getName()The name of an OpenSearch application.getTags()An arbitrary set of tags (key-value pairs) for this application.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of an OpenSearch application.- See Also:
-
getAppConfigs
List of application configurations.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnApplication.AppConfigProperty>- See Also:
-
getDataSources
List of data sources.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnApplication.DataSourceProperty>- See Also:
-
getEndpoint
The endpoint URL of an OpenSearch application.- See Also:
-
getIamIdentityCenterOptions
Settings container for integrating IAM Identity Center with OpenSearch UI applications, which enables enabling secure user authentication and access control across multiple data sources.This setup supports single sign-on (SSO) through IAM Identity Center, allowing centralized user management.
Returns union: either
IResolvableorCfnApplication.IamIdentityCenterOptionsProperty- See Also:
-
getTags
An arbitrary set of tags (key-value pairs) for this application.- See Also:
-
builder
- Returns:
- a
CfnApplicationProps.BuilderofCfnApplicationProps
-