interface MixinApplication
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.core.MixinApplication |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/core#MixinApplication |
Java | software.amazon.awscdk.mixins.preview.core.MixinApplication |
Python | aws_cdk.mixins_preview.core.MixinApplication |
TypeScript (source) | @aws-cdk/mixins-preview ยป core ยป 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 { core } from '@aws-cdk/mixins-preview';
import * as constructs from 'constructs';
declare const construct: constructs.Construct;
declare const mixin: core.Mixin;
const mixinApplication: core.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 (