@awboost/cfn-resource-types 0.1.107 → 0.1.109

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.
Files changed (37) hide show
  1. package/lib/AWS-CloudFormation-StackSet.d.ts +10 -0
  2. package/lib/AWS-CodePipeline-Pipeline.d.ts +220 -10
  3. package/lib/AWS-CodePipeline-Pipeline.js +1 -1
  4. package/lib/AWS-Deadline-MeteredProduct.d.ts +15 -15
  5. package/lib/AWS-ECS-TaskDefinition.d.ts +6 -6
  6. package/lib/AWS-EntityResolution-IdMappingWorkflow.d.ts +36 -3
  7. package/lib/AWS-EntityResolution-IdNamespace.d.ts +43 -1
  8. package/lib/AWS-EntityResolution-MatchingWorkflow.d.ts +7 -1
  9. package/lib/AWS-EntityResolution-SchemaMapping.d.ts +1 -0
  10. package/lib/AWS-LaunchWizard-Deployment.d.ts +109 -0
  11. package/lib/AWS-LaunchWizard-Deployment.js +12 -0
  12. package/lib/AWS-RDS-DBCluster.d.ts +448 -161
  13. package/lib/AWS-RDS-DBCluster.js +17 -1
  14. package/lib/AWS-RDS-DBClusterParameterGroup.d.ts +29 -11
  15. package/lib/AWS-RDS-DBClusterParameterGroup.js +4 -1
  16. package/lib/AWS-RDS-DBInstance.d.ts +9 -1
  17. package/lib/AWS-RDS-EventSubscription.d.ts +29 -17
  18. package/lib/AWS-RDS-EventSubscription.js +1 -1
  19. package/lib/AWS-RDS-OptionGroup.d.ts +36 -15
  20. package/lib/AWS-RDS-OptionGroup.js +1 -1
  21. package/lib/AWS-S3-Bucket.d.ts +1 -1
  22. package/lib/AWS-SES-MailManagerAddonInstance.d.ts +60 -0
  23. package/lib/AWS-SES-MailManagerAddonInstance.js +12 -0
  24. package/lib/AWS-SES-MailManagerAddonSubscription.d.ts +54 -0
  25. package/lib/AWS-SES-MailManagerAddonSubscription.js +12 -0
  26. package/lib/AWS-SES-MailManagerArchive.d.ts +81 -0
  27. package/lib/AWS-SES-MailManagerArchive.js +12 -0
  28. package/lib/AWS-SES-MailManagerIngressPoint.d.ts +105 -0
  29. package/lib/AWS-SES-MailManagerIngressPoint.js +12 -0
  30. package/lib/AWS-SES-MailManagerRelay.d.ts +88 -0
  31. package/lib/AWS-SES-MailManagerRelay.js +12 -0
  32. package/lib/AWS-SES-MailManagerRuleSet.d.ts +447 -0
  33. package/lib/AWS-SES-MailManagerRuleSet.js +12 -0
  34. package/lib/AWS-SES-MailManagerTrafficPolicy.d.ts +212 -0
  35. package/lib/AWS-SES-MailManagerTrafficPolicy.js +12 -0
  36. package/lib/AWS-WorkSpacesThinClient-Environment.d.ts +5 -0
  37. package/package.json +1 -1
@@ -64,8 +64,9 @@ export type EntityResolutionIdNamespaceAttributes = {
64
64
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-idnamespaceidmappingworkflowproperties.html}
65
65
  */
66
66
  export type IdNamespaceIdMappingWorkflowProperties = {
67
- IdMappingType: "PROVIDER";
67
+ IdMappingType: "PROVIDER" | "RULE_BASED";
68
68
  ProviderProperties?: NamespaceProviderProperties;
69
+ RuleBasedProperties?: NamespaceRuleBasedProperties;
69
70
  };
70
71
  /**
71
72
  * Type definition for `AWS::EntityResolution::IdNamespace.IdNamespaceInputSource`.
@@ -99,6 +100,47 @@ export type NamespaceProviderProperties = {
99
100
  */
100
101
  ProviderServiceArn: string;
101
102
  };
103
+ /**
104
+ * Type definition for `AWS::EntityResolution::IdNamespace.NamespaceRuleBasedProperties`.
105
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespacerulebasedproperties.html}
106
+ */
107
+ export type NamespaceRuleBasedProperties = {
108
+ AttributeMatchingModel?: "ONE_TO_ONE" | "MANY_TO_MANY";
109
+ RecordMatchingModels?: RecordMatchingModel[];
110
+ RuleDefinitionTypes?: RuleDefinitionType[];
111
+ /**
112
+ * @minLength `1`
113
+ * @maxLength `25`
114
+ */
115
+ Rules?: Rule[];
116
+ };
117
+ /**
118
+ * Type definition for `AWS::EntityResolution::IdNamespace.RecordMatchingModel`.
119
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-recordmatchingmodel.html}
120
+ */
121
+ export type RecordMatchingModel = "ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET";
122
+ /**
123
+ * Type definition for `AWS::EntityResolution::IdNamespace.Rule`.
124
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-rule.html}
125
+ */
126
+ export type Rule = {
127
+ /**
128
+ * @minLength `1`
129
+ * @maxLength `25`
130
+ */
131
+ MatchingKeys: string[];
132
+ /**
133
+ * @minLength `0`
134
+ * @maxLength `255`
135
+ * @pattern `^[a-zA-Z_0-9- \t]*$`
136
+ */
137
+ RuleName: string;
138
+ };
139
+ /**
140
+ * Type definition for `AWS::EntityResolution::IdNamespace.RuleDefinitionType`.
141
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-ruledefinitiontype.html}
142
+ */
143
+ export type RuleDefinitionType = "SOURCE" | "TARGET";
102
144
  /**
103
145
  * Type definition for `AWS::EntityResolution::IdNamespace.Tag`.
104
146
  * A key-value pair to associate with a resource.
@@ -141,9 +141,14 @@ export type ProviderProperties = {
141
141
  */
142
142
  export type ResolutionTechniques = {
143
143
  ProviderProperties?: ProviderProperties;
144
- ResolutionType?: "RULE_MATCHING" | "ML_MATCHING" | "PROVIDER";
144
+ ResolutionType?: ResolutionType;
145
145
  RuleBasedProperties?: RuleBasedProperties;
146
146
  };
147
+ /**
148
+ * Type definition for `AWS::EntityResolution::MatchingWorkflow.ResolutionType`.
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontype.html}
150
+ */
151
+ export type ResolutionType = "RULE_MATCHING" | "ML_MATCHING" | "PROVIDER";
147
152
  /**
148
153
  * Type definition for `AWS::EntityResolution::MatchingWorkflow.Rule`.
149
154
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rule.html}
@@ -167,6 +172,7 @@ export type Rule = {
167
172
  */
168
173
  export type RuleBasedProperties = {
169
174
  AttributeMatchingModel: "ONE_TO_ONE" | "MANY_TO_MANY";
175
+ MatchPurpose?: "IDENTIFIER_GENERATION" | "INDEXING";
170
176
  /**
171
177
  * @minLength `1`
172
178
  * @maxLength `15`
@@ -76,6 +76,7 @@ export type SchemaInputAttribute = {
76
76
  * @pattern `^[a-zA-Z_0-9- \t]*$`
77
77
  */
78
78
  GroupName?: string;
79
+ Hashed?: boolean;
79
80
  /**
80
81
  * @minLength `0`
81
82
  * @maxLength `255`
@@ -0,0 +1,109 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::LaunchWizard::Deployment Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-launchwizard-deployment.html}
6
+ */
7
+ export type LaunchWizardDeploymentProperties = {
8
+ /**
9
+ * Workload deployment pattern name
10
+ * @minLength `1`
11
+ * @maxLength `256`
12
+ * @pattern `^[A-Za-z0-9][a-zA-Z0-9-]*$`
13
+ */
14
+ DeploymentPatternName: string;
15
+ /**
16
+ * Name of LaunchWizard deployment
17
+ * @minLength `1`
18
+ * @maxLength `50`
19
+ * @pattern `^[A-Za-z0-9_\s\.-]+$`
20
+ */
21
+ Name: string;
22
+ /**
23
+ * LaunchWizard deployment specifications
24
+ */
25
+ Specifications: DeploymentSpecifications;
26
+ /**
27
+ * Tags for LaunchWizard deployment
28
+ */
29
+ Tags?: Tags[];
30
+ /**
31
+ * Workload Name for LaunchWizard deployment
32
+ * @minLength `1`
33
+ * @maxLength `100`
34
+ * @pattern `^[A-Za-z][a-zA-Z0-9-_]*$`
35
+ */
36
+ WorkloadName: string;
37
+ };
38
+ /**
39
+ * Attribute type definition for `AWS::LaunchWizard::Deployment`.
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-launchwizard-deployment.html#aws-resource-launchwizard-deployment-return-values}
41
+ */
42
+ export type LaunchWizardDeploymentAttributes = {
43
+ /**
44
+ * ARN of the LaunchWizard deployment
45
+ * @pattern `^arn:aws(-cn|-us-gov)?:launchwizard:[a-z0-9-]+:[0-9]{12}:deployment/([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})$`
46
+ */
47
+ Arn: string;
48
+ /**
49
+ * Timestamp of LaunchWizard deployment creation
50
+ */
51
+ CreatedAt: string;
52
+ /**
53
+ * Timestamp of LaunchWizard deployment deletion
54
+ */
55
+ DeletedAt: string;
56
+ /**
57
+ * Deployment ID of the LaunchWizard deployment
58
+ * @minLength `2`
59
+ * @maxLength `128`
60
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
61
+ */
62
+ DeploymentId: string;
63
+ /**
64
+ * Resource Group Name created for LaunchWizard deployment
65
+ */
66
+ ResourceGroup: string;
67
+ /**
68
+ * Status of LaunchWizard deployment
69
+ */
70
+ Status: DeploymentStatus;
71
+ };
72
+ /**
73
+ * Type definition for `AWS::LaunchWizard::Deployment.DeploymentSpecifications`.
74
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-launchwizard-deployment-deploymentspecifications.html}
75
+ */
76
+ export type DeploymentSpecifications = Record<string, string>;
77
+ /**
78
+ * Type definition for `AWS::LaunchWizard::Deployment.DeploymentStatus`.
79
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-launchwizard-deployment-deploymentstatus.html}
80
+ */
81
+ export type DeploymentStatus = "COMPLETED" | "CREATING" | "DELETE_IN_PROGRESS" | "DELETE_INITIATING" | "DELETE_FAILED" | "DELETED" | "FAILED" | "IN_PROGRESS" | "VALIDATING";
82
+ /**
83
+ * Type definition for `AWS::LaunchWizard::Deployment.Tags`.
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-launchwizard-deployment-tags.html}
85
+ */
86
+ export type Tags = {
87
+ /**
88
+ * The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
89
+ * @minLength `1`
90
+ * @maxLength `128`
91
+ * @pattern `^[a-zA-Z+-=._:/]+$`
92
+ */
93
+ Key: string;
94
+ /**
95
+ * The value for the tag. You can specify a value that is 0 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
96
+ * @minLength `0`
97
+ * @maxLength `256`
98
+ */
99
+ Value?: string;
100
+ };
101
+ /**
102
+ * Definition of AWS::LaunchWizard::Deployment Resource Type
103
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-launchwizard-deployment.html}
104
+ */
105
+ export declare class LaunchWizardDeployment extends $Resource<"AWS::LaunchWizard::Deployment", LaunchWizardDeploymentProperties, LaunchWizardDeploymentAttributes> {
106
+ static readonly Type = "AWS::LaunchWizard::Deployment";
107
+ constructor(logicalId: string, properties: LaunchWizardDeploymentProperties, options?: $ResourceOptions);
108
+ }
109
+ //# sourceMappingURL=AWS-LaunchWizard-Deployment.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::LaunchWizard::Deployment Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-launchwizard-deployment.html}
5
+ */
6
+ export class LaunchWizardDeployment extends $Resource {
7
+ static Type = "AWS::LaunchWizard::Deployment";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, LaunchWizardDeployment.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-LaunchWizard-Deployment.js.map