ApplicationReference

class aws_cdk.aws_opensearchservice.ApplicationReference(*, application_arn, application_name)

Bases: object

A reference to a Application resource.

Parameters:
  • application_arn (str) – The ARN of the Application resource.

  • application_name (str) – The Name of the Application resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_opensearchservice as opensearchservice

application_reference = opensearchservice.ApplicationReference(
    application_arn="applicationArn",
    application_name="applicationName"
)

Attributes

application_arn

The ARN of the Application resource.

application_name

The Name of the Application resource.