@awboost/cfn-resource-types 0.1.404 → 0.1.406

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.
@@ -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
  /**
@@ -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
  /**
@@ -12,6 +12,7 @@ export type EntityResolutionIdMappingWorkflowProperties = {
12
12
  * @maxLength `255`
13
13
  */
14
14
  Description?: string;
15
+ IdMappingIncrementalRunConfig?: IdMappingIncrementalRunConfig;
15
16
  IdMappingTechniques: IdMappingTechniques;
16
17
  /**
17
18
  * @minLength `1`
@@ -59,6 +60,13 @@ export type EntityResolutionIdMappingWorkflowAttributes = {
59
60
  */
60
61
  WorkflowArn: string;
61
62
  };
63
+ /**
64
+ * Type definition for `AWS::EntityResolution::IdMappingWorkflow.IdMappingIncrementalRunConfig`.
65
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingincrementalrunconfig.html}
66
+ */
67
+ export type IdMappingIncrementalRunConfig = {
68
+ IncrementalRunType: "ON_DEMAND";
69
+ };
62
70
  /**
63
71
  * Type definition for `AWS::EntityResolution::IdMappingWorkflow.IdMappingRuleBasedProperties`.
64
72
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingrulebasedproperties.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.
@@ -1,7 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource Definition for type AWS::IVS::Stage.
4
+ * Resource Type definition for AWS::IVS::Stage.
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-stage.html}
6
6
  */
7
7
  export type IVSStageProperties = {
@@ -128,7 +128,7 @@ export type Tag = {
128
128
  Value: string;
129
129
  };
130
130
  /**
131
- * Resource Definition for type AWS::IVS::Stage.
131
+ * Resource Type definition for AWS::IVS::Stage.
132
132
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-stage.html}
133
133
  */
134
134
  export declare class IVSStage extends $Resource<"AWS::IVS::Stage", IVSStageProperties, IVSStageAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Definition for type AWS::IVS::Stage.
3
+ * Resource Type definition for AWS::IVS::Stage.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-stage.html}
5
5
  */
6
6
  export class IVSStage extends $Resource {
@@ -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.
@@ -11,7 +11,7 @@ export type LambdaEventInvokeConfigProperties = {
11
11
  DestinationConfig?: DestinationConfig;
12
12
  /**
13
13
  * The name of the Lambda function.
14
- * @pattern `^(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
14
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]+(-[a-z]+)+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
15
15
  */
16
16
  FunctionName: string;
17
17
  /**
@@ -57,7 +57,7 @@ export type OnFailure = {
57
57
  * The Amazon Resource Name (ARN) of the destination resource.
58
58
  * @minLength `0`
59
59
  * @maxLength `350`
60
- * @pattern `^$|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
60
+ * @pattern `^$|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]+(-[a-z]+)+-\d{1})?:(\d{12})?:(.*)`
61
61
  */
62
62
  Destination: string;
63
63
  };
@@ -71,7 +71,7 @@ export type OnSuccess = {
71
71
  * The Amazon Resource Name (ARN) of the destination resource.
72
72
  * @minLength `0`
73
73
  * @maxLength `350`
74
- * @pattern `^$|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
74
+ * @pattern `^$|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]+(-[a-z]+)+-\d{1})?:(\d{12})?:(.*)`
75
75
  */
76
76
  Destination: string;
77
77
  };
@@ -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.404",
3
+ "version": "0.1.406",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },