interface ServiceEnvironmentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Batch.ServiceEnvironmentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbatch#ServiceEnvironmentReference |
Java | software.amazon.awscdk.interfaces.batch.ServiceEnvironmentReference |
Python | aws_cdk.interfaces.aws_batch.ServiceEnvironmentReference |
TypeScript | aws-cdk-lib » interfaces » aws_batch » ServiceEnvironmentReference |
A reference to a ServiceEnvironment resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as interfaces_aws_batch } from 'aws-cdk-lib/interfaces';
const serviceEnvironmentReference: interfaces_aws_batch.ServiceEnvironmentReference = {
serviceEnvironmentArn: 'serviceEnvironmentArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| service | string | The ServiceEnvironmentArn of the ServiceEnvironment resource. |
serviceEnvironmentArn
Type:
string
The ServiceEnvironmentArn of the ServiceEnvironment resource.

.NET
Go
Java
Python
TypeScript