interface StepReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMR.StepReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemr#StepReference |
Java | software.amazon.awscdk.services.emr.StepReference |
Python | aws_cdk.aws_emr.StepReference |
TypeScript | aws-cdk-lib » aws_emr » StepReference |
A reference to a Step resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emr as emr } from 'aws-cdk-lib';
const stepReference: emr.StepReference = {
stepId: 'stepId',
};
Properties
| Name | Type | Description |
|---|---|---|
| step | string | The Id of the Step resource. |
stepId
Type:
string
The Id of the Step resource.

.NET
Go
Java
Python
TypeScript