interface CfnScheduleGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Scheduler.CfnScheduleGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsscheduler#CfnScheduleGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.scheduler.CfnScheduleGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_scheduler.CfnScheduleGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_scheduler » 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 { aws_scheduler as scheduler } from '@aws-cdk/cfn-property-mixins';
const cfnScheduleGroupMixinProps: scheduler.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