interface CfnScheduleGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Scheduler.Mixins.CfnScheduleGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsscheduler/mixins#CfnScheduleGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.scheduler.mixins.CfnScheduleGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_scheduler.mixins.CfnScheduleGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_scheduler » mixins » CfnScheduleGroupMixinProps |
Properties for CfnScheduleGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as scheduler_mixins } from '@aws-cdk/mixins-preview/aws-scheduler';
const cfnScheduleGroupMixinProps: scheduler_mixins.CfnScheduleGroupMixinProps = {
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the schedule group. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
name?
Type:
string
(optional)
The name of the schedule group.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript