interface ServiceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RefactorSpaces.ServiceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrefactorspaces#ServiceReference |
Java | software.amazon.awscdk.interfaces.refactorspaces.ServiceReference |
Python | aws_cdk.interfaces.aws_refactorspaces.ServiceReference |
TypeScript | aws-cdk-lib » interfaces » aws_refactorspaces » ServiceReference |
A reference to a Service resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_refactorspaces as interfaces_refactorspaces } from 'aws-cdk-lib/interfaces';
const serviceReference: interfaces_refactorspaces.ServiceReference = {
applicationIdentifier: 'applicationIdentifier',
environmentIdentifier: 'environmentIdentifier',
serviceArn: 'serviceArn',
serviceIdentifier: 'serviceIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationIdentifier of the Service resource. |
| environment | string | The EnvironmentIdentifier of the Service resource. |
| service | string | The ARN of the Service resource. |
| service | string | The ServiceIdentifier of the Service resource. |
applicationIdentifier
Type:
string
The ApplicationIdentifier of the Service resource.
environmentIdentifier
Type:
string
The EnvironmentIdentifier of the Service resource.
serviceArn
Type:
string
The ARN of the Service resource.
serviceIdentifier
Type:
string
The ServiceIdentifier of the Service resource.

.NET
Go
Java
Python
TypeScript