@awboost/cfn-resource-types 0.1.83 → 0.1.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AWS-Chatbot-MicrosoftTeamsChannelConfiguration.d.ts +12 -0
- package/lib/AWS-Chatbot-SlackChannelConfiguration.d.ts +12 -0
- package/lib/AWS-CodeBuild-Fleet.d.ts +15 -0
- package/lib/AWS-Glue-Job.d.ts +1 -0
- package/lib/AWS-MWAA-Environment.d.ts +10 -0
- package/lib/AWS-MediaLive-Channel.d.ts +1 -0
- package/package.json +1 -1
|
@@ -30,6 +30,10 @@ export type ChatbotMicrosoftTeamsChannelConfigurationProperties = {
|
|
|
30
30
|
* ARNs of SNS topics which delivers notifications to AWS Chatbot, for example CloudWatch alarm notifications.
|
|
31
31
|
*/
|
|
32
32
|
SnsTopicArns?: string[];
|
|
33
|
+
/**
|
|
34
|
+
* The tags to add to the configuration
|
|
35
|
+
*/
|
|
36
|
+
Tags?: Tag[];
|
|
33
37
|
/**
|
|
34
38
|
* The id of the Microsoft Teams team
|
|
35
39
|
* @minLength `36`
|
|
@@ -67,6 +71,14 @@ export type ChatbotMicrosoftTeamsChannelConfigurationAttributes = {
|
|
|
67
71
|
*/
|
|
68
72
|
Arn: string;
|
|
69
73
|
};
|
|
74
|
+
/**
|
|
75
|
+
* Type definition for `AWS::Chatbot::MicrosoftTeamsChannelConfiguration.Tag`.
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-microsoftteamschannelconfiguration-tag.html}
|
|
77
|
+
*/
|
|
78
|
+
export type Tag = {
|
|
79
|
+
Key: string;
|
|
80
|
+
Value: string;
|
|
81
|
+
};
|
|
70
82
|
/**
|
|
71
83
|
* Resource schema for AWS::Chatbot::MicrosoftTeamsChannelConfiguration.
|
|
72
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-microsoftteamschannelconfiguration.html}
|
|
@@ -44,6 +44,10 @@ export type ChatbotSlackChannelConfigurationProperties = {
|
|
|
44
44
|
* ARNs of SNS topics which delivers notifications to AWS Chatbot, for example CloudWatch alarm notifications.
|
|
45
45
|
*/
|
|
46
46
|
SnsTopicArns?: string[];
|
|
47
|
+
/**
|
|
48
|
+
* The tags to add to the configuration
|
|
49
|
+
*/
|
|
50
|
+
Tags?: Tag[];
|
|
47
51
|
/**
|
|
48
52
|
* Enables use of a user role requirement in your chat configuration
|
|
49
53
|
*/
|
|
@@ -60,6 +64,14 @@ export type ChatbotSlackChannelConfigurationAttributes = {
|
|
|
60
64
|
*/
|
|
61
65
|
Arn: string;
|
|
62
66
|
};
|
|
67
|
+
/**
|
|
68
|
+
* Type definition for `AWS::Chatbot::SlackChannelConfiguration.Tag`.
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-slackchannelconfiguration-tag.html}
|
|
70
|
+
*/
|
|
71
|
+
export type Tag = {
|
|
72
|
+
Key: string;
|
|
73
|
+
Value: string;
|
|
74
|
+
};
|
|
63
75
|
/**
|
|
64
76
|
* Resource schema for AWS::Chatbot::SlackChannelConfiguration.
|
|
65
77
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html}
|
|
@@ -11,11 +11,17 @@ export type CodeBuildFleetProperties = {
|
|
|
11
11
|
BaseCapacity?: number;
|
|
12
12
|
ComputeType?: "BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_2XLARGE";
|
|
13
13
|
EnvironmentType?: "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER";
|
|
14
|
+
/**
|
|
15
|
+
* @pattern `^(?:arn:)[a-zA-Z+-=,._:/@]+$`
|
|
16
|
+
*/
|
|
17
|
+
FleetServiceRole?: string;
|
|
18
|
+
FleetVpcConfig?: VpcConfig;
|
|
14
19
|
/**
|
|
15
20
|
* @minLength `2`
|
|
16
21
|
* @maxLength `128`
|
|
17
22
|
*/
|
|
18
23
|
Name?: string;
|
|
24
|
+
OverflowBehavior?: "QUEUE" | "ON_DEMAND";
|
|
19
25
|
Tags?: Tag[];
|
|
20
26
|
};
|
|
21
27
|
/**
|
|
@@ -48,6 +54,15 @@ export type Tag = {
|
|
|
48
54
|
*/
|
|
49
55
|
Value: string;
|
|
50
56
|
};
|
|
57
|
+
/**
|
|
58
|
+
* Type definition for `AWS::CodeBuild::Fleet.VpcConfig`.
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-fleet-vpcconfig.html}
|
|
60
|
+
*/
|
|
61
|
+
export type VpcConfig = {
|
|
62
|
+
SecurityGroupIds?: string[];
|
|
63
|
+
Subnets?: string[];
|
|
64
|
+
VpcId?: string;
|
|
65
|
+
};
|
|
51
66
|
/**
|
|
52
67
|
* Resource Type definition for AWS::CodeBuild::Fleet
|
|
53
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-fleet.html}
|
package/lib/AWS-Glue-Job.d.ts
CHANGED
|
@@ -67,11 +67,21 @@ export type MWAAEnvironmentProperties = {
|
|
|
67
67
|
* Logging configuration for the environment.
|
|
68
68
|
*/
|
|
69
69
|
LoggingConfiguration?: LoggingConfiguration;
|
|
70
|
+
/**
|
|
71
|
+
* Maximum webserver compute units.
|
|
72
|
+
* @min `2`
|
|
73
|
+
*/
|
|
74
|
+
MaxWebservers?: number;
|
|
70
75
|
/**
|
|
71
76
|
* Maximum worker compute units.
|
|
72
77
|
* @min `1`
|
|
73
78
|
*/
|
|
74
79
|
MaxWorkers?: number;
|
|
80
|
+
/**
|
|
81
|
+
* Minimum webserver compute units.
|
|
82
|
+
* @min `2`
|
|
83
|
+
*/
|
|
84
|
+
MinWebservers?: number;
|
|
75
85
|
/**
|
|
76
86
|
* Minimum worker compute units.
|
|
77
87
|
* @min `1`
|