@awboost/cfn-resource-types 0.1.466 → 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.
@@ -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
@@ -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
@@ -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.466",
3
+ "version": "0.1.467",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },