interface TypeActivationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFormation.TypeActivationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudformation#TypeActivationReference |
Java | software.amazon.awscdk.interfaces.cloudformation.TypeActivationReference |
Python | aws_cdk.interfaces.aws_cloudformation.TypeActivationReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudformation » TypeActivationReference |
A reference to a TypeActivation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudformation as interfaces_cloudformation } from 'aws-cdk-lib/interfaces';
const typeActivationReference: interfaces_cloudformation.TypeActivationReference = {
typeActivationArn: 'typeActivationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The Arn of the TypeActivation resource. |
typeActivationArn
Type:
string
The Arn of the TypeActivation resource.

.NET
Go
Java
Python
TypeScript