interface CfnAppMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnAppMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnAppMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnAppMixinProps |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnAppMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnAppMixinProps |
Properties for CfnAppPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-app.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pinpoint_mixins } from '@aws-cdk/mixins-preview/aws-pinpoint';
declare const tags: any;
const cfnAppMixinProps: pinpoint_mixins.CfnAppMixinProps = {
name: 'name',
tags: tags,
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The display name of the application. |
| tags? | any | An array of key-value pairs to apply to this resource. |
name?
Type:
string
(optional)
The display name of the application.
tags?
Type:
any
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript