interface MixinApplication
| Language | Type name |
|---|---|
.NET | Amazon.CDK.MixinApplication |
Go | github.com/aws/aws-cdk-go/awscdk/v2#MixinApplication |
Java | software.amazon.awscdk.MixinApplication |
Python | aws_cdk.MixinApplication |
TypeScript (source) | aws-cdk-lib » MixinApplication |
Represents a successful mixin application.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import * as constructs from 'constructs';
declare const construct: constructs.Construct;
declare const mixin: constructs.IMixin;
const mixinApplication: cdk.MixinApplication = {
construct: construct,
mixin: mixin,
};
Properties
| Name | Type | Description |
|---|---|---|
| construct | IConstruct | The construct the mixin was applied to. |
| mixin | IMixin | The mixin that was applied. |
construct
Type:
IConstruct
The construct the mixin was applied to.
mixin
Type:
IMixin
The mixin that was applied.

.NET
Go
Java
Python
TypeScript (