interface ApplicationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.OpenSearchService.ApplicationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsopensearchservice#ApplicationReference |
Java | software.amazon.awscdk.interfaces.opensearchservice.ApplicationReference |
Python | aws_cdk.interfaces.aws_opensearchservice.ApplicationReference |
TypeScript | aws-cdk-lib » interfaces » aws_opensearchservice » ApplicationReference |
A reference to a Application resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchservice as interfaces_opensearchservice } from 'aws-cdk-lib/interfaces';
const applicationReference: interfaces_opensearchservice.ApplicationReference = {
applicationArn: 'applicationArn',
applicationName: 'applicationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ARN of the Application resource. |
| application | string | The Name of the Application resource. |
applicationArn
Type:
string
The ARN of the Application resource.
applicationName
Type:
string
The Name of the Application resource.

.NET
Go
Java
Python
TypeScript