interface ExecutionPlanReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.KendraRanking.ExecutionPlanReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awskendraranking#ExecutionPlanReference |
Java | software.amazon.awscdk.interfaces.kendraranking.ExecutionPlanReference |
Python | aws_cdk.interfaces.aws_kendraranking.ExecutionPlanReference |
TypeScript | aws-cdk-lib » interfaces » aws_kendraranking » ExecutionPlanReference |
A reference to a ExecutionPlan resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kendraranking as interfaces_kendraranking } from 'aws-cdk-lib/interfaces';
const executionPlanReference: interfaces_kendraranking.ExecutionPlanReference = {
executionPlanArn: 'executionPlanArn',
executionPlanId: 'executionPlanId',
};
Properties
| Name | Type | Description |
|---|---|---|
| execution | string | The ARN of the ExecutionPlan resource. |
| execution | string | The Id of the ExecutionPlan resource. |
executionPlanArn
Type:
string
The ARN of the ExecutionPlan resource.
executionPlanId
Type:
string
The Id of the ExecutionPlan resource.

.NET
Go
Java
Python
TypeScript