@awboost/cfn-resource-types 0.1.465 → 0.1.467

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.
@@ -10,6 +10,17 @@ export type BedrockAutomatedReasoningPolicyProperties = {
10
10
  * @pattern `^[\s\S]+$`
11
11
  */
12
12
  Description?: string;
13
+ /**
14
+ * Specifies whether to force delete the automated reasoning policy even if it has active resources. When false , Amazon Bedrock validates if all artifacts have been deleted (e.g. policy version, test case, test result) for a policy before deletion. When true , Amazon Bedrock will delete the policy and all its artifacts without validation. Default is false
15
+ */
16
+ ForceDelete?: boolean;
17
+ /**
18
+ * The KMS key with which the Policy's assets will be encrypted at rest.
19
+ * @minLength `1`
20
+ * @maxLength `2048`
21
+ * @pattern `^(arn:aws(-[^:]+)?:kms:[a-zA-Z0-9-]*:[0-9]{12}:((key/[a-zA-Z0-9-]{36})|(alias/[a-zA-Z0-9-_/]+)))|([a-zA-Z0-9-]{36})|(alias/[a-zA-Z0-9-_/]+)$`
22
+ */
23
+ KmsKeyId?: string;
13
24
  /**
14
25
  * @minLength `1`
15
26
  * @maxLength `256`
@@ -35,6 +46,13 @@ export type BedrockAutomatedReasoningPolicyAttributes = {
35
46
  * @pattern `^[0-9a-z]{128}$`
36
47
  */
37
48
  DefinitionHash: string;
49
+ /**
50
+ * The KMS key with which the Policy's assets will be encrypted at rest.
51
+ * @minLength `1`
52
+ * @maxLength `2048`
53
+ * @pattern `^arn:aws(-[^:]+)?:kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}$`
54
+ */
55
+ KmsKeyArn: string;
38
56
  /**
39
57
  * @minLength `1`
40
58
  * @maxLength `2048`
@@ -0,0 +1,69 @@
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::BedrockAgentCore::WorkloadIdentity Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html}
6
+ */
7
+ export type BedrockAgentCoreWorkloadIdentityProperties = {
8
+ /**
9
+ * The list of allowed OAuth2 return URLs for resources associated with this workload identity.
10
+ */
11
+ AllowedResourceOauth2ReturnUrls?: string[];
12
+ /**
13
+ * The name of the workload identity. The name must be unique within your account.
14
+ * @minLength `3`
15
+ * @maxLength `255`
16
+ * @pattern `[A-Za-z0-9_.-]+`
17
+ */
18
+ Name: string;
19
+ /**
20
+ * An array of key-value pairs to apply to this resource.
21
+ */
22
+ Tags?: Tag[];
23
+ };
24
+ /**
25
+ * Attribute type definition for `AWS::BedrockAgentCore::WorkloadIdentity`.
26
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html#aws-resource-bedrockagentcore-workloadidentity-return-values}
27
+ */
28
+ export type BedrockAgentCoreWorkloadIdentityAttributes = {
29
+ /**
30
+ * The timestamp when the workload identity was created.
31
+ */
32
+ CreatedTime: number;
33
+ /**
34
+ * The timestamp when the workload identity was last updated.
35
+ */
36
+ LastUpdatedTime: number;
37
+ /**
38
+ * The Amazon Resource Name (ARN) of the workload identity.
39
+ * @minLength `1`
40
+ * @maxLength `1024`
41
+ */
42
+ WorkloadIdentityArn: string;
43
+ };
44
+ /**
45
+ * Type definition for `AWS::BedrockAgentCore::WorkloadIdentity.Tag`.
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-workloadidentity-tag.html}
47
+ */
48
+ export type Tag = {
49
+ /**
50
+ * @minLength `1`
51
+ * @maxLength `128`
52
+ * @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
53
+ */
54
+ Key: string;
55
+ /**
56
+ * @minLength `0`
57
+ * @maxLength `256`
58
+ */
59
+ Value: string;
60
+ };
61
+ /**
62
+ * Definition of AWS::BedrockAgentCore::WorkloadIdentity Resource Type
63
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html}
64
+ */
65
+ export declare class BedrockAgentCoreWorkloadIdentity extends $Resource<"AWS::BedrockAgentCore::WorkloadIdentity", BedrockAgentCoreWorkloadIdentityProperties, BedrockAgentCoreWorkloadIdentityAttributes> {
66
+ static readonly Type = "AWS::BedrockAgentCore::WorkloadIdentity";
67
+ constructor(logicalId: string, properties: BedrockAgentCoreWorkloadIdentityProperties, options?: $ResourceOptions);
68
+ }
69
+ //# sourceMappingURL=AWS-BedrockAgentCore-WorkloadIdentity.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::BedrockAgentCore::WorkloadIdentity Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html}
5
+ */
6
+ export class BedrockAgentCoreWorkloadIdentity extends $Resource {
7
+ static Type = "AWS::BedrockAgentCore::WorkloadIdentity";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, BedrockAgentCoreWorkloadIdentity.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-BedrockAgentCore-WorkloadIdentity.js.map
@@ -6,6 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html}
7
7
  */
8
8
  export type CleanRoomsCollaborationProperties = {
9
+ AllowedResultRegions?: SupportedS3Region[];
9
10
  AnalyticsEngine?: AnalyticsEngine;
10
11
  AutoApprovedChangeTypes?: AutoApprovedChangeType[];
11
12
  /**
@@ -171,6 +172,11 @@ export type PaymentConfiguration = {
171
172
  export type QueryComputePaymentConfig = {
172
173
  IsResponsible: boolean;
173
174
  };
175
+ /**
176
+ * Type definition for `AWS::CleanRooms::Collaboration.SupportedS3Region`.
177
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-supporteds3region.html}
178
+ */
179
+ export type SupportedS3Region = "us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1";
174
180
  /**
175
181
  * Type definition for `AWS::CleanRooms::Collaboration.Tag`.
176
182
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-tag.html}
@@ -181,6 +181,7 @@ export type AthenaTableReference = {
181
181
  * @maxLength `1024`
182
182
  */
183
183
  OutputLocation?: string;
184
+ Region?: CommercialRegion;
184
185
  /**
185
186
  * @maxLength `128`
186
187
  */
@@ -191,6 +192,11 @@ export type AthenaTableReference = {
191
192
  */
192
193
  WorkGroup: string;
193
194
  };
195
+ /**
196
+ * Type definition for `AWS::CleanRooms::ConfiguredTable.CommercialRegion`.
197
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-commercialregion.html}
198
+ */
199
+ export type CommercialRegion = "us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1" | "ap-east-2";
194
200
  /**
195
201
  * Type definition for `AWS::CleanRooms::ConfiguredTable.ConfiguredTableAnalysisRulePolicy`.
196
202
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicy.html}
@@ -241,6 +247,7 @@ export type GlueTableReference = {
241
247
  * @pattern `^[a-zA-Z0-9_](([a-zA-Z0-9_ ]+-)*([a-zA-Z0-9_ ]+))?$`
242
248
  */
243
249
  DatabaseName: string;
250
+ Region?: CommercialRegion;
244
251
  /**
245
252
  * @maxLength `128`
246
253
  * @pattern `^[a-zA-Z0-9_](([a-zA-Z0-9_ ]+-)*([a-zA-Z0-9_ ]+))?$`
@@ -14,18 +14,27 @@ export type CleanRoomsPrivacyBudgetTemplateProperties = {
14
14
  */
15
15
  MembershipIdentifier: string;
16
16
  Parameters: {
17
+ /**
18
+ * @minLength `1`
19
+ * @maxLength `2`
20
+ */
21
+ BudgetParameters?: BudgetParameter[];
17
22
  /**
18
23
  * @min `1`
19
24
  * @max `20`
20
25
  */
21
- Epsilon: number;
26
+ Epsilon?: number;
27
+ /**
28
+ * @maxLength `200`
29
+ */
30
+ ResourceArn?: string;
22
31
  /**
23
32
  * @min `10`
24
33
  * @max `100`
25
34
  */
26
- UsersNoisePerQuery: number;
35
+ UsersNoisePerQuery?: number;
27
36
  };
28
- PrivacyBudgetType: "DIFFERENTIAL_PRIVACY";
37
+ PrivacyBudgetType: "DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET";
29
38
  /**
30
39
  * An arbitrary set of tags (key-value pairs) for this cleanrooms privacy budget template.
31
40
  */
@@ -61,6 +70,18 @@ export type CleanRoomsPrivacyBudgetTemplateAttributes = {
61
70
  */
62
71
  PrivacyBudgetTemplateIdentifier: string;
63
72
  };
73
+ /**
74
+ * Type definition for `AWS::CleanRooms::PrivacyBudgetTemplate.BudgetParameter`.
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-privacybudgettemplate-budgetparameter.html}
76
+ */
77
+ export type BudgetParameter = {
78
+ AutoRefresh?: "ENABLED" | "DISABLED";
79
+ /**
80
+ * @min `0`
81
+ */
82
+ Budget: number;
83
+ Type: "CALENDAR_DAY" | "CALENDAR_MONTH" | "CALENDAR_WEEK" | "LIFETIME";
84
+ };
64
85
  /**
65
86
  * Type definition for `AWS::CleanRooms::PrivacyBudgetTemplate.Tag`.
66
87
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-privacybudgettemplate-tag.html}
@@ -40,6 +40,10 @@ export type DataZoneConnectionProperties = {
40
40
  */
41
41
  ProjectIdentifier?: string;
42
42
  Props?: ConnectionPropertiesInput;
43
+ /**
44
+ * The scope of the connection.
45
+ */
46
+ Scope?: "DOMAIN" | "PROJECT";
43
47
  };
44
48
  /**
45
49
  * Attribute type definition for `AWS::DataZone::Connection`.
@@ -83,6 +87,29 @@ export type DataZoneConnectionAttributes = {
83
87
  */
84
88
  Type: string;
85
89
  };
90
+ /**
91
+ * Type definition for `AWS::DataZone::Connection.AmazonQPropertiesInput`.
92
+ * Amazon Q properties of the connection.
93
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-amazonqpropertiesinput.html}
94
+ */
95
+ export type AmazonQPropertiesInput = {
96
+ /**
97
+ * The authentication mode of the connection's AmazonQ properties
98
+ * @minLength `0`
99
+ * @maxLength `128`
100
+ */
101
+ AuthMode?: string;
102
+ /**
103
+ * Specifies whether Amazon Q is enabled for the connection
104
+ */
105
+ IsEnabled?: boolean;
106
+ /**
107
+ * @minLength `0`
108
+ * @maxLength `2048`
109
+ * @pattern `arn:aws[a-z\-]*:[a-z0-9\-]+:[a-z0-9\-]*:[0-9]*:.*`
110
+ */
111
+ ProfileArn?: string;
112
+ };
86
113
  /**
87
114
  * Type definition for `AWS::DataZone::Connection.AthenaPropertiesInput`.
88
115
  * Athena Properties Input
@@ -230,6 +257,11 @@ export type ConnectionPropertiesInput = {
230
257
  * Spark EMR Properties Input.
231
258
  */
232
259
  SparkEmrProperties: SparkEmrPropertiesInput;
260
+ } | {
261
+ /**
262
+ * Amazon Q properties of the connection.
263
+ */
264
+ AmazonQProperties: AmazonQPropertiesInput;
233
265
  } | {
234
266
  /**
235
267
  * Spark Glue Properties Input.
@@ -66,7 +66,7 @@ export type InstanceLaunchTemplate = {
66
66
  export type InstanceRequirementsRequest = {
67
67
  AcceleratorCount?: AcceleratorCountRequest;
68
68
  AcceleratorManufacturers?: ("amazon-web-services" | "amd" | "habana" | "nvidia" | "xilinx")[];
69
- AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100")[];
69
+ AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100" | "l40s")[];
70
70
  AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRequest;
71
71
  AcceleratorTypes?: ("gpu" | "fpga" | "inference")[];
72
72
  AllowedInstanceTypes?: string[];
@@ -0,0 +1,94 @@
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
+ * Resource Type definition for AWS::Glue::IntegrationResourceProperty
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html}
6
+ */
7
+ export type GlueIntegrationResourcePropertyProperties = {
8
+ /**
9
+ * The connection ARN of the source, or the database ARN of the target.
10
+ * @pattern `arn:aws:.*:.*:[0-9]+:.*`
11
+ */
12
+ ResourceArn: string;
13
+ /**
14
+ * The resource properties associated with the integration source.
15
+ */
16
+ SourceProcessingProperties?: {
17
+ /**
18
+ * The IAM role to access the Glue connection.
19
+ * @maxLength `128`
20
+ */
21
+ RoleArn: string;
22
+ };
23
+ /**
24
+ * An array of key-value pairs to apply to this resource.
25
+ * @maxLength `50`
26
+ */
27
+ Tags?: Tag[];
28
+ /**
29
+ * The resource properties associated with the integration target.
30
+ */
31
+ TargetProcessingProperties?: {
32
+ /**
33
+ * The Glue network connection to configure the Glue job running in the customer VPC.
34
+ * @maxLength `128`
35
+ */
36
+ ConnectionName?: string;
37
+ /**
38
+ * The ARN of an Eventbridge event bus to receive the integration status notification.
39
+ * @maxLength `128`
40
+ */
41
+ EventBusArn?: string;
42
+ /**
43
+ * The ARN of the KMS key used for encryption.
44
+ * @maxLength `128`
45
+ * @pattern `arn:aws:kms:.*:[0-9]+:.*`
46
+ */
47
+ KmsArn?: string;
48
+ /**
49
+ * The IAM role to access the Glue database.
50
+ * @maxLength `128`
51
+ * @pattern `arn:aws:iam:.*:[0-9]+:.*`
52
+ */
53
+ RoleArn: string;
54
+ };
55
+ };
56
+ /**
57
+ * Attribute type definition for `AWS::Glue::IntegrationResourceProperty`.
58
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html#aws-resource-glue-integrationresourceproperty-return-values}
59
+ */
60
+ export type GlueIntegrationResourcePropertyAttributes = {
61
+ /**
62
+ * The integration resource property ARN.
63
+ * @pattern `arn:aws:glue:.*:[0-9]+:.*`
64
+ */
65
+ ResourcePropertyArn: string;
66
+ };
67
+ /**
68
+ * Type definition for `AWS::Glue::IntegrationResourceProperty.Tag`.
69
+ * A key-value pair to associate with a resource.
70
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-integrationresourceproperty-tag.html}
71
+ */
72
+ export type Tag = {
73
+ /**
74
+ * The key name of the tag. You can specify a value that is 1 to 128 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 -.
75
+ * @minLength `1`
76
+ * @maxLength `128`
77
+ */
78
+ Key: string;
79
+ /**
80
+ * The value for the tag. You can specify a value that is 0 to 256 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 -.
81
+ * @minLength `0`
82
+ * @maxLength `256`
83
+ */
84
+ Value?: string;
85
+ };
86
+ /**
87
+ * Resource Type definition for AWS::Glue::IntegrationResourceProperty
88
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html}
89
+ */
90
+ export declare class GlueIntegrationResourceProperty extends $Resource<"AWS::Glue::IntegrationResourceProperty", GlueIntegrationResourcePropertyProperties, GlueIntegrationResourcePropertyAttributes> {
91
+ static readonly Type = "AWS::Glue::IntegrationResourceProperty";
92
+ constructor(logicalId: string, properties: GlueIntegrationResourcePropertyProperties, options?: $ResourceOptions);
93
+ }
94
+ //# sourceMappingURL=AWS-Glue-IntegrationResourceProperty.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::Glue::IntegrationResourceProperty
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html}
5
+ */
6
+ export class GlueIntegrationResourceProperty extends $Resource {
7
+ static Type = "AWS::Glue::IntegrationResourceProperty";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, GlueIntegrationResourceProperty.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Glue-IntegrationResourceProperty.js.map
@@ -58,6 +58,24 @@ export type LocationAPIKeyAttributes = {
58
58
  */
59
59
  UpdateTime: string;
60
60
  };
61
+ /**
62
+ * Type definition for `AWS::Location::APIKey.AndroidApp`.
63
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-location-apikey-androidapp.html}
64
+ */
65
+ export type AndroidApp = {
66
+ /**
67
+ * @minLength `59`
68
+ * @maxLength `59`
69
+ * @pattern `^([A-Fa-f0-9]{2}:){19}[A-Fa-f0-9]{2}$`
70
+ */
71
+ CertificateFingerprint: string;
72
+ /**
73
+ * @minLength `1`
74
+ * @maxLength `255`
75
+ * @pattern `^([A-Za-z][A-Za-z\d_]*\.)+[A-Za-z][A-Za-z\d_]*$`
76
+ */
77
+ Package: string;
78
+ };
61
79
  /**
62
80
  * Type definition for `AWS::Location::APIKey.ApiKeyRestrictions`.
63
81
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-location-apikey-apikeyrestrictions.html}
@@ -69,7 +87,17 @@ export type ApiKeyRestrictions = {
69
87
  */
70
88
  AllowActions: string[];
71
89
  /**
72
- * @minLength `1`
90
+ * @minLength `0`
91
+ * @maxLength `5`
92
+ */
93
+ AllowAndroidApps?: AndroidApp[];
94
+ /**
95
+ * @minLength `0`
96
+ * @maxLength `5`
97
+ */
98
+ AllowAppleApps?: AppleApp[];
99
+ /**
100
+ * @minLength `0`
73
101
  * @maxLength `5`
74
102
  */
75
103
  AllowReferers?: string[];
@@ -79,6 +107,18 @@ export type ApiKeyRestrictions = {
79
107
  */
80
108
  AllowResources: string[];
81
109
  };
110
+ /**
111
+ * Type definition for `AWS::Location::APIKey.AppleApp`.
112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-location-apikey-appleapp.html}
113
+ */
114
+ export type AppleApp = {
115
+ /**
116
+ * @minLength `1`
117
+ * @maxLength `155`
118
+ * @pattern `^[A-Za-z0-9\-]+(\.[A-Za-z0-9\-]+)+$`
119
+ */
120
+ BundleId: string;
121
+ };
82
122
  /**
83
123
  * Type definition for `AWS::Location::APIKey.Tag`.
84
124
  * A key-value pair to associate with a resource.
@@ -5,23 +5,29 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
6
6
  */
7
7
  export type ServiceCatalogPortfolioPrincipalAssociationProperties = {
8
+ /**
9
+ * The language code.
10
+ */
8
11
  AcceptLanguage?: string;
9
- PortfolioId: string;
10
- PrincipalARN: string;
12
+ /**
13
+ * The portfolio identifier.
14
+ */
15
+ PortfolioId?: string;
16
+ /**
17
+ * The ARN of the principal (user, role, or group).
18
+ * @pattern `arn:(aws|aws-cn|aws-us-gov):iam::[0-9]*:(role|user|group)\/.*`
19
+ */
20
+ PrincipalARN?: string;
21
+ /**
22
+ * The principal type. The supported value is IAM if you use a fully defined Amazon Resource Name (ARN), or IAM_PATTERN if you use an ARN with no accountID, with or without wildcard characters.
23
+ */
11
24
  PrincipalType: string;
12
25
  };
13
- /**
14
- * Attribute type definition for `AWS::ServiceCatalog::PortfolioPrincipalAssociation`.
15
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#aws-resource-servicecatalog-portfolioprincipalassociation-return-values}
16
- */
17
- export type ServiceCatalogPortfolioPrincipalAssociationAttributes = {
18
- Id: string;
19
- };
20
26
  /**
21
27
  * Resource Type definition for AWS::ServiceCatalog::PortfolioPrincipalAssociation
22
28
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
23
29
  */
24
- export declare class ServiceCatalogPortfolioPrincipalAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioPrincipalAssociation", ServiceCatalogPortfolioPrincipalAssociationProperties, ServiceCatalogPortfolioPrincipalAssociationAttributes> {
30
+ export declare class ServiceCatalogPortfolioPrincipalAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioPrincipalAssociation", ServiceCatalogPortfolioPrincipalAssociationProperties, Record<string, never>> {
25
31
  static readonly Type = "AWS::ServiceCatalog::PortfolioPrincipalAssociation";
26
32
  constructor(logicalId: string, properties: ServiceCatalogPortfolioPrincipalAssociationProperties, options?: $ResourceOptions);
27
33
  }
@@ -6,6 +6,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html}
7
7
  */
8
8
  export type WAFv2WebACLProperties = {
9
+ /**
10
+ * Collection of application attributes.
11
+ */
12
+ ApplicationConfig?: ApplicationConfig;
9
13
  /**
10
14
  * AssociationConfig for body inspection
11
15
  */
@@ -108,6 +112,39 @@ export type AllowAction = {
108
112
  export type AndStatement = {
109
113
  Statements: Statement[];
110
114
  };
115
+ /**
116
+ * Type definition for `AWS::WAFv2::WebACL.ApplicationAttribute`.
117
+ * Application details defined during the &webacl; creation process. Application attributes help WAF; give recommendations for protection packs.
118
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-applicationattribute.html}
119
+ */
120
+ export type ApplicationAttribute = {
121
+ /**
122
+ * Specifies the attribute name.
123
+ * @minLength `1`
124
+ * @maxLength `64`
125
+ * @pattern `^[\w\-]+$`
126
+ */
127
+ Name: string;
128
+ /**
129
+ * Contains a list of values for that attribute
130
+ * @minLength `1`
131
+ * @maxLength `10`
132
+ */
133
+ Values: string[];
134
+ };
135
+ /**
136
+ * Type definition for `AWS::WAFv2::WebACL.ApplicationConfig`.
137
+ * Configures the ability for the WAF; console to store and retrieve application attributes during the webacl; creation process. Application attributes help WAF; give recommendations for protection packs.
138
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-applicationconfig.html}
139
+ */
140
+ export type ApplicationConfig = {
141
+ /**
142
+ * Contains the attribute name and a list of values for that attribute.
143
+ * @minLength `1`
144
+ * @maxLength `10`
145
+ */
146
+ Attributes: ApplicationAttribute[];
147
+ };
111
148
  /**
112
149
  * Type definition for `AWS::WAFv2::WebACL.AsnMatchStatement`.
113
150
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-asnmatchstatement.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.465",
3
+ "version": "0.1.467",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },