@awboost/cfn-resource-types 0.1.403 → 0.1.405

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.
@@ -54,7 +54,7 @@ export type BillingBillingViewProperties = {
54
54
  */
55
55
  export type BillingBillingViewAttributes = {
56
56
  /**
57
- * @pattern `arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[a-zA-Z0-9_+=.@-]{1,75}`
57
+ * @pattern `arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[a-zA-Z0-9/:_\+=\.\-@]{0,75}[a-zA-Z0-9]`
58
58
  */
59
59
  Arn: string;
60
60
  BillingViewType: BillingViewType;
@@ -5,37 +5,98 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html}
6
6
  */
7
7
  export type CodePipelineWebhookProperties = {
8
- Authentication: string;
8
+ /**
9
+ * Supported options are GITHUB_HMAC, IP, and UNAUTHENTICATED.
10
+ */
11
+ Authentication: "GITHUB_HMAC" | "IP" | "UNAUTHENTICATED";
12
+ /**
13
+ * Properties that configure the authentication applied to incoming webhook trigger requests
14
+ */
9
15
  AuthenticationConfiguration: WebhookAuthConfiguration;
16
+ /**
17
+ * A list of rules applied to the body/payload sent in the POST request to a webhook URL
18
+ */
10
19
  Filters: WebhookFilterRule[];
20
+ /**
21
+ * The name of the webhook
22
+ * @minLength `1`
23
+ * @maxLength `100`
24
+ * @pattern `[A-Za-z0-9.@\-_]+`
25
+ */
11
26
  Name?: string;
27
+ /**
28
+ * Configures a connection between the webhook that was created and the external tool with events to be detected.
29
+ */
12
30
  RegisterWithThirdParty?: boolean;
31
+ /**
32
+ * The name of the action in a pipeline you want to connect to the webhook.
33
+ * @minLength `1`
34
+ * @maxLength `100`
35
+ * @pattern `[A-Za-z0-9.@\-_]+`
36
+ */
13
37
  TargetAction: string;
38
+ /**
39
+ * The name of the pipeline you want to connect to the webhook.
40
+ * @minLength `1`
41
+ * @maxLength `100`
42
+ * @pattern `[A-Za-z0-9.@\-_]+`
43
+ */
14
44
  TargetPipeline: string;
15
- TargetPipelineVersion: number;
45
+ /**
46
+ * The version number of the pipeline to be connected to the trigger request.
47
+ */
48
+ TargetPipelineVersion?: number;
16
49
  };
17
50
  /**
18
51
  * Attribute type definition for `AWS::CodePipeline::Webhook`.
19
52
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-webhook.html#aws-resource-codepipeline-webhook-return-values}
20
53
  */
21
54
  export type CodePipelineWebhookAttributes = {
55
+ /**
56
+ * logical id of the webhook
57
+ */
22
58
  Id: string;
59
+ /**
60
+ * The webhook URL generated by AWS CodePipeline
61
+ */
23
62
  Url: string;
24
63
  };
25
64
  /**
26
65
  * Type definition for `AWS::CodePipeline::Webhook.WebhookAuthConfiguration`.
66
+ * Properties that configure the authentication applied to incoming webhook trigger requests
27
67
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookauthconfiguration.html}
28
68
  */
29
69
  export type WebhookAuthConfiguration = {
70
+ /**
71
+ * The property used to configure acceptance of webhooks in an IP address range. For IP, only the AllowedIPRange property must be set. This property must be set to a valid CIDR range.
72
+ * @minLength `1`
73
+ * @maxLength `100`
74
+ */
30
75
  AllowedIPRange?: string;
76
+ /**
77
+ * The property used to configure GitHub authentication. For GITHUB_HMAC, only the SecretToken property must be set.
78
+ * @minLength `1`
79
+ * @maxLength `100`
80
+ */
31
81
  SecretToken?: string;
32
82
  };
33
83
  /**
34
84
  * Type definition for `AWS::CodePipeline::Webhook.WebhookFilterRule`.
85
+ * A list of rules applied to the body/payload sent in the POST request to a webhook URL. All defined rules must pass for the request to be accepted and the pipeline started.
35
86
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-webhook-webhookfilterrule.html}
36
87
  */
37
88
  export type WebhookFilterRule = {
89
+ /**
90
+ * A JsonPath expression that is applied to the body/payload of the webhook. The value selected by the JsonPath expression must match the value specified in the MatchEquals field. Otherwise, the request is ignored.
91
+ * @minLength `1`
92
+ * @maxLength `150`
93
+ */
38
94
  JsonPath: string;
95
+ /**
96
+ * The value selected by the JsonPath expression must match what is supplied in the MatchEquals field. Otherwise, the request is ignored.
97
+ * @minLength `1`
98
+ * @maxLength `150`
99
+ */
39
100
  MatchEquals?: string;
40
101
  };
41
102
  /**
@@ -13,17 +13,17 @@ export type ConnectPredefinedAttributeProperties = {
13
13
  /**
14
14
  * The name of the predefined attribute.
15
15
  * @minLength `1`
16
- * @maxLength `64`
16
+ * @maxLength `100`
17
17
  */
18
18
  Name: string;
19
19
  /**
20
20
  * The values of a predefined attribute.
21
21
  */
22
- Values: {
22
+ Values?: {
23
23
  /**
24
24
  * Predefined attribute values of type string list.
25
25
  * @minLength `1`
26
- * @maxLength `128`
26
+ * @maxLength `500`
27
27
  */
28
28
  StringList?: string[];
29
29
  };
@@ -70,7 +70,7 @@ export type DMSDataMigrationAttributes = {
70
70
  */
71
71
  export type DataMigrationSettings = {
72
72
  /**
73
- * The property specifies whether to enable the Cloudwatch log.
73
+ * The property specifies whether to enable the CloudWatch log.
74
74
  */
75
75
  CloudwatchLogsEnabled?: boolean;
76
76
  /**
@@ -88,6 +88,7 @@ export type DeadlineFleetAttributes = {
88
88
  */
89
89
  FleetId: string;
90
90
  Status: FleetStatus;
91
+ StatusMessage: string;
91
92
  WorkerCount: number;
92
93
  };
93
94
  /**
@@ -222,7 +223,7 @@ export type Ec2EbsVolume = {
222
223
  * Type definition for `AWS::Deadline::Fleet.Ec2MarketType`.
223
224
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-ec2markettype.html}
224
225
  */
225
- export type Ec2MarketType = "on-demand" | "spot";
226
+ export type Ec2MarketType = "on-demand" | "spot" | "wait-and-save";
226
227
  /**
227
228
  * Type definition for `AWS::Deadline::Fleet.FleetAmountCapability`.
228
229
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-fleetamountcapability.html}
@@ -283,7 +284,7 @@ export type FleetConfiguration = {
283
284
  * Type definition for `AWS::Deadline::Fleet.FleetStatus`.
284
285
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-fleetstatus.html}
285
286
  */
286
- export type FleetStatus = "ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED";
287
+ export type FleetStatus = "ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "SUSPENDED";
287
288
  /**
288
289
  * Type definition for `AWS::Deadline::Fleet.HostConfiguration`.
289
290
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-hostconfiguration.html}
@@ -33,6 +33,10 @@ export type EventsRuleProperties = {
33
33
  * The state of the rule.
34
34
  */
35
35
  State?: "DISABLED" | "ENABLED" | "ENABLED_WITH_ALL_CLOUDTRAIL_MANAGEMENT_EVENTS";
36
+ /**
37
+ * Any tags assigned to the event rule.
38
+ */
39
+ Tags?: Tag[];
36
40
  /**
37
41
  * Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule.
38
42
  Targets are the resources that are invoked when a rule is triggered.
@@ -78,6 +78,10 @@ export type ApplicationConfiguration = {
78
78
  * The code location and type parameters for a Flink-based Kinesis Data Analytics application.
79
79
  */
80
80
  ApplicationCodeConfiguration?: ApplicationCodeConfiguration;
81
+ /**
82
+ * Describes whether customer managed key is enabled and key details for customer data encryption
83
+ */
84
+ ApplicationEncryptionConfiguration?: ApplicationEncryptionConfiguration;
81
85
  /**
82
86
  * Describes whether snapshots are enabled for a Flink-based Kinesis Data Analytics application.
83
87
  */
@@ -108,6 +112,24 @@ export type ApplicationConfiguration = {
108
112
  */
109
113
  ZeppelinApplicationConfiguration?: ZeppelinApplicationConfiguration;
110
114
  };
115
+ /**
116
+ * Type definition for `AWS::KinesisAnalyticsV2::Application.ApplicationEncryptionConfiguration`.
117
+ * Describes whether customer managed key is enabled and key details for customer data encryption
118
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationencryptionconfiguration.html}
119
+ */
120
+ export type ApplicationEncryptionConfiguration = {
121
+ /**
122
+ * KMS KeyId. Can be either key uuid or full key arn or key alias arn or short key alias
123
+ * @minLength `1`
124
+ * @maxLength `2048`
125
+ * @pattern `^(?:arn:.*:kms:.*:.*:(?:key\/.*|alias\/.*)|alias\/.*|(?i)[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})$`
126
+ */
127
+ KeyId?: string;
128
+ /**
129
+ * Specifies whether application data is encrypted using service key: AWS_OWNED_KEY or customer key: CUSTOMER_MANAGED_KEY
130
+ */
131
+ KeyType: "AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KEY";
132
+ };
111
133
  /**
112
134
  * Type definition for `AWS::KinesisAnalyticsV2::Application.ApplicationMaintenanceConfiguration`.
113
135
  * Describes the maintenance configuration for the application.
@@ -7,6 +7,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  */
8
8
  export type VpcLatticeResourceGatewayProperties = {
9
9
  IpAddressType?: "IPV4" | "IPV6" | "DUALSTACK";
10
+ /**
11
+ * The number of IPv4 addresses to allocate per ENI for the resource gateway
12
+ */
13
+ Ipv4AddressesPerEni?: number;
10
14
  /**
11
15
  * @minLength `3`
12
16
  * @maxLength `40`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.403",
3
+ "version": "0.1.405",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },