@awboost/cfn-resource-types 0.1.466 → 0.1.468

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.
@@ -391,7 +391,7 @@ export type DataSourceParameters = {
391
391
  * Type definition for `AWS::QuickSight::DataSource.DataSourceType`.
392
392
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-datasourcetype.html}
393
393
  */
394
- export type DataSourceType = "ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "AMAZON_OPENSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "DATABRICKS" | "DENODO" | "DREMIO" | "DYNAMODB" | "SAPHANA" | "DB2_AS400" | "EXASOL" | "FILE" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "QBUSINESS" | "REDSHIFT" | "S3" | "S3_TABLES" | "S3_KNOWLEDGE_BASE" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SPICE" | "SQLSERVER" | "TERADATA" | "TIMESTREAM" | "TWITTER" | "BIGQUERY" | "GOOGLE_ANALYTICS" | "TRINO" | "STARBURST" | "MONGO" | "MONGO_ATLAS" | "DOCUMENTDB" | "APPFLOW" | "IMPALA" | "GLUE" | "GOOGLE_DRIVE" | "CONFLUENCE" | "SHAREPOINT" | "ONE_DRIVE" | "WEB_CRAWLER";
394
+ export type DataSourceType = "ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "AMAZON_OPENSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "DATABRICKS" | "DENODO" | "DREMIO" | "DYNAMODB" | "SAPHANA" | "DB2_AS400" | "EXASOL" | "FILE" | "GITHUB" | "INTERNATIONAL_DATA_CORPORATION" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "QBUSINESS" | "REDSHIFT" | "S3" | "S3_TABLES" | "S3_KNOWLEDGE_BASE" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SPICE" | "SQLSERVER" | "TERADATA" | "TIMESTREAM" | "TWITTER" | "BIGQUERY" | "GOOGLE_ANALYTICS" | "TRINO" | "STARBURST" | "MONGO" | "MONGO_ATLAS" | "DOCUMENTDB" | "APPFLOW" | "IMPALA" | "GLUE" | "GOOGLE_DRIVE" | "CONFLUENCE" | "SHAREPOINT" | "ONE_DRIVE" | "WEB_CRAWLER";
395
395
  /**
396
396
  * Type definition for `AWS::QuickSight::DataSource.IdentityCenterConfiguration`.
397
397
  * <p>The parameters for an IAM Identity Center configuration.</p>
@@ -0,0 +1,71 @@
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::SES::MultiRegionEndpoint
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html}
6
+ */
7
+ export type SESMultiRegionEndpointProperties = {
8
+ /**
9
+ * Contains details of a multi-region endpoint (global-endpoint) being created.
10
+ */
11
+ Details: Details;
12
+ /**
13
+ * The name of the multi-region endpoint (global-endpoint).
14
+ * @minLength `1`
15
+ * @maxLength `64`
16
+ * @pattern `^[\w\-_]+$`
17
+ */
18
+ EndpointName: string;
19
+ /**
20
+ * An Array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint).
21
+ * @minLength `0`
22
+ * @maxLength `50`
23
+ */
24
+ Tags?: Tag[];
25
+ };
26
+ /**
27
+ * Type definition for `AWS::SES::MultiRegionEndpoint.Details`.
28
+ * Contains details of a multi-region endpoint (global-endpoint) being created.
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-multiregionendpoint-details.html}
30
+ */
31
+ export type Details = {
32
+ /**
33
+ * A list of route configuration details. Must contain exactly one route configuration
34
+ * @minLength `1`
35
+ * @maxLength `1`
36
+ */
37
+ RouteDetails: {
38
+ /**
39
+ * The name of an AWS-Region to be a secondary region for the multi-region endpoint (global-endpoint)
40
+ */
41
+ Region: string;
42
+ }[];
43
+ };
44
+ /**
45
+ * Type definition for `AWS::SES::MultiRegionEndpoint.Tag`.
46
+ * An object that defines the tags that are associated with a resource.
47
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-multiregionendpoint-tag.html}
48
+ */
49
+ export type Tag = {
50
+ /**
51
+ * One part of a key-value pair that defines a tag.
52
+ * @minLength `1`
53
+ * @maxLength `128`
54
+ */
55
+ Key: string;
56
+ /**
57
+ * The optional part of a key-value pair that defines a tag.
58
+ * @minLength `0`
59
+ * @maxLength `256`
60
+ */
61
+ Value: string;
62
+ };
63
+ /**
64
+ * Resource Type definition for AWS::SES::MultiRegionEndpoint
65
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html}
66
+ */
67
+ export declare class SESMultiRegionEndpoint extends $Resource<"AWS::SES::MultiRegionEndpoint", SESMultiRegionEndpointProperties, Record<string, never>> {
68
+ static readonly Type = "AWS::SES::MultiRegionEndpoint";
69
+ constructor(logicalId: string, properties: SESMultiRegionEndpointProperties, options?: $ResourceOptions);
70
+ }
71
+ //# sourceMappingURL=AWS-SES-MultiRegionEndpoint.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::SES::MultiRegionEndpoint
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html}
5
+ */
6
+ export class SESMultiRegionEndpoint extends $Resource {
7
+ static Type = "AWS::SES::MultiRegionEndpoint";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, SESMultiRegionEndpoint.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-SES-MultiRegionEndpoint.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.468",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },