interface AssetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DevOpsAgent.AssetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdevopsagent#AssetReference |
Java | software.amazon.awscdk.interfaces.devopsagent.AssetReference |
Python | aws_cdk.interfaces.aws_devopsagent.AssetReference |
TypeScript | aws-cdk-lib » interfaces » aws_devopsagent » AssetReference |
A reference to a Asset resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as interfaces_devopsagent } from 'aws-cdk-lib/interfaces';
const assetReference: interfaces_devopsagent.AssetReference = {
agentSpaceId: 'agentSpaceId',
assetArn: 'assetArn',
assetId: 'assetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The AgentSpaceId of the Asset resource. |
| asset | string | The ARN of the Asset resource. |
| asset | string | The AssetId of the Asset resource. |
agentSpaceId
Type:
string
The AgentSpaceId of the Asset resource.
assetArn
Type:
string
The ARN of the Asset resource.
assetId
Type:
string
The AssetId of the Asset resource.

.NET
Go
Java
Python
TypeScript