Interface CfnApplicationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:11.536Z")
@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 StringEndpoint URL of an OpenSearch Application.default ObjectContainer for IAM Identity Center Options settings.getName()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
Name of an OpenSearch Application.- See Also:
-
getAppConfigs
List of application configurations.- See Also:
-
getDataSources
List of data sources.- See Also:
-
getEndpoint
Endpoint URL of an OpenSearch Application.- See Also:
-
getIamIdentityCenterOptions
Container for IAM Identity Center Options settings.- See Also:
-
getTags
An arbitrary set of tags (key-value pairs) for this application.- See Also:
-
builder
- Returns:
- a
CfnApplicationProps.BuilderofCfnApplicationProps
-