interface SkillReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Ask.SkillReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/alexaask#SkillReference |
Java | software.amazon.awscdk.interfaces.ask.SkillReference |
Python | aws_cdk.interfaces.alexa_ask.SkillReference |
TypeScript | aws-cdk-lib » interfaces » alexa_ask » SkillReference |
A reference to a Skill resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { alexa_ask as interfaces_alexa_ask } from 'aws-cdk-lib/interfaces';
const skillReference: interfaces_alexa_ask.SkillReference = {
skillId: 'skillId',
};
Properties
| Name | Type | Description |
|---|---|---|
| skill | string | The Id of the Skill resource. |
skillId
Type:
string
The Id of the Skill resource.

.NET
Go
Java
Python
TypeScript