interface StepReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EMR.StepReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsemr#StepReference |
Java | software.amazon.awscdk.interfaces.emr.StepReference |
Python | aws_cdk.interfaces.aws_emr.StepReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_emr } from 'aws-cdk-lib/interfaces';
const stepReference: interfaces_aws_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