@intentius/chant-lexicon-aws 0.14.0 → 0.15.0
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.
- package/dist/components/__tests__/mock-cloud-executor.d.ts +106 -0
- package/dist/components/__tests__/mock-cloud-executor.d.ts.map +1 -0
- package/dist/components/apply.d.ts +242 -0
- package/dist/components/apply.d.ts.map +1 -0
- package/dist/components/builders.d.ts +37 -0
- package/dist/components/builders.d.ts.map +1 -0
- package/dist/components/capability-plugin.d.ts +23 -0
- package/dist/components/capability-plugin.d.ts.map +1 -0
- package/dist/components/cloud-executor.d.ts +350 -0
- package/dist/components/cloud-executor.d.ts.map +1 -0
- package/dist/components/config-bom.d.ts +135 -0
- package/dist/components/config-bom.d.ts.map +1 -0
- package/dist/components/host-delivery.d.ts +110 -0
- package/dist/components/host-delivery.d.ts.map +1 -0
- package/dist/components/index.d.ts +19 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/job-submission.d.ts +89 -0
- package/dist/components/job-submission.d.ts.map +1 -0
- package/dist/components/publish.d.ts +194 -0
- package/dist/components/publish.d.ts.map +1 -0
- package/dist/components/safety.d.ts +49 -0
- package/dist/components/safety.d.ts.map +1 -0
- package/dist/components/wait-aws.d.ts +65 -0
- package/dist/components/wait-aws.d.ts.map +1 -0
- package/dist/generated/index.d.ts +7 -4
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/import/live-export.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/lint/audit-catalog.d.ts +10 -0
- package/dist/lint/audit-catalog.d.ts.map +1 -0
- package/dist/manifest.json +1 -1
- package/dist/meta.json +141 -30
- package/dist/op/activities/floci.d.ts +54 -0
- package/dist/op/activities/floci.d.ts.map +1 -0
- package/dist/op/activities/index.d.ts +8 -0
- package/dist/op/activities/index.d.ts.map +1 -0
- package/dist/ownership.d.ts +10 -0
- package/dist/ownership.d.ts.map +1 -0
- package/dist/plugin.d.ts.map +1 -1
- package/dist/serializer.d.ts.map +1 -1
- package/dist/types/index.d.ts +145 -38
- package/package.json +12 -2
- package/src/components/__fixtures__/schemas/cyclonedx-1.5.schema.json +3800 -0
- package/src/components/__fixtures__/schemas/cyclonedx-spdx-license.schema.json +621 -0
- package/src/components/__fixtures__/schemas/jsf-0.82.schema.json +240 -0
- package/src/components/__fixtures__/schemas/spdx-2.3.schema.json +740 -0
- package/src/components/__fixtures__/synthesized-template.json +53 -0
- package/src/components/__tests__/mock-cloud-executor.ts +425 -0
- package/src/components/apply.test.ts +382 -0
- package/src/components/apply.ts +499 -0
- package/src/components/builders.test.ts +49 -0
- package/src/components/builders.ts +59 -0
- package/src/components/capability-plugin.ts +73 -0
- package/src/components/cloud-executor.test.ts +25 -0
- package/src/components/cloud-executor.ts +814 -0
- package/src/components/config-bom.test.ts +273 -0
- package/src/components/config-bom.ts +310 -0
- package/src/components/host-delivery.test.ts +121 -0
- package/src/components/host-delivery.ts +193 -0
- package/src/components/index.ts +19 -0
- package/src/components/job-submission.test.ts +97 -0
- package/src/components/job-submission.ts +138 -0
- package/src/components/pilots-e2e.test.ts +460 -0
- package/src/components/presets-e2e.test.ts +166 -0
- package/src/components/publish.test.ts +318 -0
- package/src/components/publish.ts +356 -0
- package/src/components/safety.test.ts +47 -0
- package/src/components/safety.ts +78 -0
- package/src/components/wait-aws.test.ts +79 -0
- package/src/components/wait-aws.ts +132 -0
- package/src/generated/index.d.ts +145 -38
- package/src/generated/index.ts +12 -9
- package/src/generated/lexicon-aws.json +141 -30
- package/src/import/live-export.ts +2 -1
- package/src/index.ts +5 -0
- package/src/lint/audit-catalog.ts +45 -0
- package/src/op/activities/floci.test.ts +67 -0
- package/src/op/activities/floci.ts +149 -0
- package/src/op/activities/index.ts +16 -0
- package/src/ownership.test.ts +18 -0
- package/src/ownership.ts +15 -0
- package/src/plugin.ts +3 -0
- package/src/serializer.ts +2 -1
package/src/generated/index.d.ts
CHANGED
|
@@ -33,11 +33,11 @@ export declare class Accelerator {
|
|
|
33
33
|
|
|
34
34
|
export declare class AcceptedPortfolioShare {
|
|
35
35
|
constructor(props: {
|
|
36
|
+
/** The portfolio identifier. */
|
|
36
37
|
PortfolioId: string;
|
|
38
|
+
/** The language code. */
|
|
37
39
|
AcceptLanguage?: string;
|
|
38
|
-
Id?: string;
|
|
39
40
|
}, attributes?: CFResourceAttributes);
|
|
40
|
-
readonly Id: string;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
export declare class AccessEntry {
|
|
@@ -5155,22 +5155,39 @@ export declare class CloudExadataInfrastructure {
|
|
|
5155
5155
|
|
|
5156
5156
|
export declare class CloudFormationProduct {
|
|
5157
5157
|
constructor(props: {
|
|
5158
|
+
/** The name of the product. */
|
|
5158
5159
|
Name: string;
|
|
5160
|
+
/** The owner of the product. */
|
|
5159
5161
|
Owner: string;
|
|
5162
|
+
/** The language code. */
|
|
5160
5163
|
AcceptLanguage?: string;
|
|
5164
|
+
/** The description of the product. */
|
|
5161
5165
|
Description?: string;
|
|
5166
|
+
/** The distributor of the product. */
|
|
5162
5167
|
Distributor?: string;
|
|
5168
|
+
/** The ID of the product, such as prod-tsjbmal34qvek */
|
|
5163
5169
|
Id?: string;
|
|
5170
|
+
/** The name of the product. */
|
|
5164
5171
|
ProductName?: string;
|
|
5165
|
-
|
|
5172
|
+
/** The type of product. */
|
|
5173
|
+
ProductType?: "CLOUD_FORMATION_TEMPLATE" | "EXTERNAL" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_CLOUD" | "TERRAFORM_OPEN_SOURCE";
|
|
5174
|
+
/** The IDs of the provisioning artifacts */
|
|
5166
5175
|
ProvisioningArtifactIds?: string;
|
|
5176
|
+
/** The names of the provisioning artifacts */
|
|
5167
5177
|
ProvisioningArtifactNames?: string;
|
|
5178
|
+
/** The configuration of the provisioning artifact (also known as a version). */
|
|
5168
5179
|
ProvisioningArtifactParameters?: CloudFormationProduct_ProvisioningArtifactProperties[];
|
|
5180
|
+
/** This property is turned off by default. If turned off, you can update provisioning artifacts or product attributes (such as description, distributor, name, owner, and more) and the associated provisioning artifacts will retain the same unique identifier. Provisioning artifacts are matched within the CloudFormationProduct resource, and only those that have been updated will be changed. Provisioning artifacts are matched by a combinaton of provisioning artifact template URL and name. */
|
|
5169
5181
|
ReplaceProvisioningArtifacts?: boolean;
|
|
5182
|
+
/** A top level ProductViewDetail response containing details about the product's connection. AWS Service Catalog returns this field for the CreateProduct, UpdateProduct, DescribeProductAsAdmin, and SearchProductAsAdmin APIs. This response contains the same fields as the ConnectionParameters request, with the addition of the LastSync response. */
|
|
5170
5183
|
SourceConnection?: CloudFormationProduct_SourceConnection;
|
|
5184
|
+
/** The support information about the product. */
|
|
5171
5185
|
SupportDescription?: string;
|
|
5186
|
+
/** The contact email for product support. */
|
|
5172
5187
|
SupportEmail?: string;
|
|
5188
|
+
/** The contact URL for product support. */
|
|
5173
5189
|
SupportUrl?: string;
|
|
5190
|
+
/** One or more tags. */
|
|
5174
5191
|
Tags?: CloudFormationProduct_Tag[];
|
|
5175
5192
|
}, attributes?: CFResourceAttributes);
|
|
5176
5193
|
readonly Id: string;
|
|
@@ -6156,6 +6173,24 @@ export declare class Config {
|
|
|
6156
6173
|
readonly Type: string;
|
|
6157
6174
|
}
|
|
6158
6175
|
|
|
6176
|
+
export declare class ConfigConnector {
|
|
6177
|
+
constructor(props: {
|
|
6178
|
+
/** The configuration for the connector that specifies the third-party cloud provider connection details. */
|
|
6179
|
+
ConnectorConfiguration: ConfigConnector_ConnectorConfiguration;
|
|
6180
|
+
/** The Amazon Resource Name (ARN) of the connector. */
|
|
6181
|
+
Arn?: string;
|
|
6182
|
+
/** The time at which the connector was created. */
|
|
6183
|
+
CreatedTime?: string;
|
|
6184
|
+
/** The name of the connector. AWS Config automatically assigns the name when creating the Connector. */
|
|
6185
|
+
Name?: string;
|
|
6186
|
+
/** The tags for the connector. */
|
|
6187
|
+
Tags?: ConfigConnector_Tag[];
|
|
6188
|
+
}, attributes?: CFResourceAttributes);
|
|
6189
|
+
readonly Arn: string;
|
|
6190
|
+
readonly CreatedTime: string;
|
|
6191
|
+
readonly Name: string;
|
|
6192
|
+
}
|
|
6193
|
+
|
|
6159
6194
|
export declare class ConfigRule {
|
|
6160
6195
|
constructor(props: {
|
|
6161
6196
|
/** Provides the rule owner (```` for managed rules, ``CUSTOM_POLICY`` for Custom Policy rules, and ``CUSTOM_LAMBDA`` for Custom Lambda rules), the rule identifier, and the notifications that cause the function to evaluate your AWS resources. */
|
|
@@ -11467,6 +11502,23 @@ export declare class DomainNameV2 {
|
|
|
11467
11502
|
readonly DomainNameId: string;
|
|
11468
11503
|
}
|
|
11469
11504
|
|
|
11505
|
+
export declare class DomainObjectType {
|
|
11506
|
+
constructor(props: {
|
|
11507
|
+
DomainName: string;
|
|
11508
|
+
Fields: Record<string, unknown>;
|
|
11509
|
+
ObjectTypeName: string;
|
|
11510
|
+
/** The timestamp of when the domain object type was created. */
|
|
11511
|
+
CreatedAt?: string;
|
|
11512
|
+
Description?: string;
|
|
11513
|
+
EncryptionKey?: string;
|
|
11514
|
+
/** The timestamp of when the domain object type was most recently edited. */
|
|
11515
|
+
LastUpdatedAt?: string;
|
|
11516
|
+
Tags?: any;
|
|
11517
|
+
}, attributes?: CFResourceAttributes);
|
|
11518
|
+
readonly CreatedAt: string;
|
|
11519
|
+
readonly LastUpdatedAt: string;
|
|
11520
|
+
}
|
|
11521
|
+
|
|
11470
11522
|
export declare class DomainUnit {
|
|
11471
11523
|
constructor(props: {
|
|
11472
11524
|
/** The ID of the domain where you want to create a domain unit. */
|
|
@@ -12596,6 +12648,8 @@ export declare class EMRContainersEndpoint {
|
|
|
12596
12648
|
VirtualClusterId: string;
|
|
12597
12649
|
/** The ARN of the managed endpoint. */
|
|
12598
12650
|
Arn?: string;
|
|
12651
|
+
/** The auth proxy URL for Spark Connect connections. */
|
|
12652
|
+
AuthProxyUrl?: string;
|
|
12599
12653
|
/** The certificate authority for the managed endpoint. */
|
|
12600
12654
|
CertificateAuthority?: EMRContainersEndpoint_Certificate;
|
|
12601
12655
|
/** The configuration overrides for the managed endpoint. */
|
|
@@ -12612,6 +12666,8 @@ export declare class EMRContainersEndpoint {
|
|
|
12612
12666
|
SecurityGroup?: string;
|
|
12613
12667
|
/** The server URL of the managed endpoint. */
|
|
12614
12668
|
ServerUrl?: string;
|
|
12669
|
+
/** The idle timeout in minutes for sessions on the managed endpoint. */
|
|
12670
|
+
SessionIdleTimeoutInMinutes?: number;
|
|
12615
12671
|
/** The state of the managed endpoint. */
|
|
12616
12672
|
State?: string;
|
|
12617
12673
|
/** Additional details about the state of the managed endpoint. */
|
|
@@ -12620,6 +12676,7 @@ export declare class EMRContainersEndpoint {
|
|
|
12620
12676
|
Tags?: EMRContainersEndpoint_Tag[];
|
|
12621
12677
|
}, attributes?: CFResourceAttributes);
|
|
12622
12678
|
readonly Arn: string;
|
|
12679
|
+
readonly AuthProxyUrl: string;
|
|
12623
12680
|
readonly CertificateAuthority: EMRContainersEndpoint_Certificate;
|
|
12624
12681
|
readonly CreatedAt: string;
|
|
12625
12682
|
readonly FailureReason: string;
|
|
@@ -16909,6 +16966,8 @@ export declare class ImageRecipe {
|
|
|
16909
16966
|
AdditionalInstanceConfiguration?: ImageRecipe_AdditionalInstanceConfiguration;
|
|
16910
16967
|
/** The tags to apply to the AMI created by this image recipe. */
|
|
16911
16968
|
AmiTags?: Record<string, unknown>;
|
|
16969
|
+
/** The AMI watermark names to attach to the output AMI from this recipe. AMI watermarks are lineage markers that automatically propagate to derivative AMIs when the source AMI is copied or distributed. */
|
|
16970
|
+
AmiWatermarks?: string[];
|
|
16912
16971
|
/** The Amazon Resource Name (ARN) of the image recipe. */
|
|
16913
16972
|
Arn?: string;
|
|
16914
16973
|
/** The block device mappings to apply when creating images from this recipe. */
|
|
@@ -29860,6 +29919,8 @@ export declare class RouterInput {
|
|
|
29860
29919
|
Arn?: string;
|
|
29861
29920
|
/** The Availability Zone where you want to create the router input. This must be a valid Availability Zone for the region specified by regionName, or the current region if no regionName is provided. */
|
|
29862
29921
|
AvailabilityZone?: string;
|
|
29922
|
+
ContentQualityAnalysisConfiguration?: any;
|
|
29923
|
+
ContentQualityAnalysisType?: RouterInput_RouterContentQualityAnalysisType;
|
|
29863
29924
|
/** The timestamp when the router input was created. */
|
|
29864
29925
|
CreatedAt?: string;
|
|
29865
29926
|
/** The unique identifier of the router input. */
|
|
@@ -29881,6 +29942,7 @@ export declare class RouterInput {
|
|
|
29881
29942
|
UpdatedAt?: string;
|
|
29882
29943
|
}, attributes?: CFResourceAttributes);
|
|
29883
29944
|
readonly Arn: string;
|
|
29945
|
+
readonly ContentQualityAnalysisType: RouterInput_RouterContentQualityAnalysisType;
|
|
29884
29946
|
readonly CreatedAt: string;
|
|
29885
29947
|
readonly Id: string;
|
|
29886
29948
|
readonly InputType: RouterInput_RouterInputType;
|
|
@@ -32945,6 +33007,7 @@ export declare class SsmParameter {
|
|
|
32945
33007
|
Value: string;
|
|
32946
33008
|
/** A regular expression used to validate the parameter value. For example, for ``String`` types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\d+$`` */
|
|
32947
33009
|
AllowedPattern?: string;
|
|
33010
|
+
Arn?: string;
|
|
32948
33011
|
/** The data type of the parameter, such as ``text`` or ``aws:ec2:image``. The default is ``text``. */
|
|
32949
33012
|
DataType?: "aws:ec2:image" | "text";
|
|
32950
33013
|
/** Information about the parameter. */
|
|
@@ -32961,6 +33024,7 @@ export declare class SsmParameter {
|
|
|
32961
33024
|
/** The parameter tier. */
|
|
32962
33025
|
Tier?: "Advanced" | "Intelligent-Tiering" | "Standard";
|
|
32963
33026
|
}, attributes?: CFResourceAttributes);
|
|
33027
|
+
readonly Arn: string;
|
|
32964
33028
|
}
|
|
32965
33029
|
|
|
32966
33030
|
export declare class SSMResourcePolicy {
|
|
@@ -36380,6 +36444,8 @@ export declare class VirtualCluster {
|
|
|
36380
36444
|
Id?: string;
|
|
36381
36445
|
/** The ID of the security configuration. */
|
|
36382
36446
|
SecurityConfigurationId?: string;
|
|
36447
|
+
/** Whether the virtual cluster is session-enabled for Spark Connect. */
|
|
36448
|
+
SessionEnabled?: boolean;
|
|
36383
36449
|
/** An array of key-value pairs to apply to this virtual cluster. */
|
|
36384
36450
|
Tags?: VirtualCluster_Tag[];
|
|
36385
36451
|
}, attributes?: CFResourceAttributes);
|
|
@@ -38839,6 +38905,7 @@ export declare class Actions {
|
|
|
38839
38905
|
constructor(props: {
|
|
38840
38906
|
/** Information about the contact category action. The syntax can be empty, for example, ``{}``. */
|
|
38841
38907
|
AssignContactCategoryActions?: any;
|
|
38908
|
+
AssignSlaActions?: any;
|
|
38842
38909
|
CreateCaseActions?: any;
|
|
38843
38910
|
EndAssociatedTasksActions?: any;
|
|
38844
38911
|
/** Information about the EV action. */
|
|
@@ -45701,6 +45768,15 @@ export declare class AzureBlobSasConfiguration {
|
|
|
45701
45768
|
});
|
|
45702
45769
|
}
|
|
45703
45770
|
|
|
45771
|
+
export declare class AzureConnectorConfiguration {
|
|
45772
|
+
constructor(props: {
|
|
45773
|
+
/** The Azure client (application) identifier. */
|
|
45774
|
+
ClientIdentifier: string;
|
|
45775
|
+
/** The Azure tenant identifier. */
|
|
45776
|
+
TenantIdentifier: string;
|
|
45777
|
+
});
|
|
45778
|
+
}
|
|
45779
|
+
|
|
45704
45780
|
export declare class B2BICapability_S3Location {
|
|
45705
45781
|
constructor(props: {
|
|
45706
45782
|
BucketName?: string;
|
|
@@ -51477,41 +51553,39 @@ export declare class CloudFormationCollectionFilter {
|
|
|
51477
51553
|
});
|
|
51478
51554
|
}
|
|
51479
51555
|
|
|
51480
|
-
export declare class
|
|
51556
|
+
export declare class CloudFormationProduct_ProvisioningArtifactProperties {
|
|
51481
51557
|
constructor(props: {
|
|
51482
|
-
|
|
51483
|
-
Branch: string;
|
|
51484
|
-
ConnectionArn: string;
|
|
51485
|
-
Repository: string;
|
|
51486
|
-
});
|
|
51487
|
-
}
|
|
51558
|
+
/** Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
|
|
51488
51559
|
|
|
51489
|
-
|
|
51490
|
-
constructor(props: {
|
|
51491
|
-
CodeStar?: CloudFormationProduct_CodeStarParameters;
|
|
51492
|
-
});
|
|
51493
|
-
}
|
|
51560
|
+
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
|
|
51494
51561
|
|
|
51495
|
-
|
|
51496
|
-
constructor(props: {
|
|
51562
|
+
ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId] */
|
|
51497
51563
|
Info: Record<string, unknown>;
|
|
51564
|
+
/** The description of the provisioning artifact, including how it differs from the previous provisioning artifact. */
|
|
51498
51565
|
Description?: string;
|
|
51566
|
+
/** If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid. */
|
|
51499
51567
|
DisableTemplateValidation?: boolean;
|
|
51568
|
+
/** The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed. */
|
|
51500
51569
|
Name?: string;
|
|
51501
|
-
|
|
51570
|
+
/** The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL */
|
|
51571
|
+
Type?: "CLOUD_FORMATION_TEMPLATE" | "EXTERNAL" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_CLOUD" | "TERRAFORM_OPEN_SOURCE";
|
|
51502
51572
|
});
|
|
51503
51573
|
}
|
|
51504
51574
|
|
|
51505
51575
|
export declare class CloudFormationProduct_SourceConnection {
|
|
51506
51576
|
constructor(props: {
|
|
51507
|
-
|
|
51577
|
+
/** The connection details based on the connection Type. */
|
|
51578
|
+
ConnectionParameters: Record<string, unknown>;
|
|
51579
|
+
/** The only supported SourceConnection type is Codestar. */
|
|
51508
51580
|
Type: string;
|
|
51509
51581
|
});
|
|
51510
51582
|
}
|
|
51511
51583
|
|
|
51512
51584
|
export declare class CloudFormationProduct_Tag {
|
|
51513
51585
|
constructor(props: {
|
|
51586
|
+
/** The tag key. */
|
|
51514
51587
|
Key: string;
|
|
51588
|
+
/** The tag value */
|
|
51515
51589
|
Value: string;
|
|
51516
51590
|
});
|
|
51517
51591
|
}
|
|
@@ -52656,15 +52730,6 @@ export declare class CodeStarConnectionsConnection_Tag {
|
|
|
52656
52730
|
});
|
|
52657
52731
|
}
|
|
52658
52732
|
|
|
52659
|
-
export declare class CodeStarParameters {
|
|
52660
|
-
constructor(props: {
|
|
52661
|
-
ArtifactPath: string;
|
|
52662
|
-
Branch: string;
|
|
52663
|
-
ConnectionArn: string;
|
|
52664
|
-
Repository: string;
|
|
52665
|
-
});
|
|
52666
|
-
}
|
|
52667
|
-
|
|
52668
52733
|
export declare class CognitoIdentityProvider {
|
|
52669
52734
|
constructor(props: {
|
|
52670
52735
|
ClientId: string;
|
|
@@ -53508,6 +53573,31 @@ export declare class Config_UplinkSpectrumConfig {
|
|
|
53508
53573
|
});
|
|
53509
53574
|
}
|
|
53510
53575
|
|
|
53576
|
+
export declare class ConfigConnector_AzureConnectorConfiguration {
|
|
53577
|
+
constructor(props: {
|
|
53578
|
+
/** The Azure client (application) identifier. */
|
|
53579
|
+
ClientIdentifier: string;
|
|
53580
|
+
/** The Azure tenant identifier. */
|
|
53581
|
+
TenantIdentifier: string;
|
|
53582
|
+
});
|
|
53583
|
+
}
|
|
53584
|
+
|
|
53585
|
+
export declare class ConfigConnector_ConnectorConfiguration {
|
|
53586
|
+
constructor(props: {
|
|
53587
|
+
/** The configuration for connecting to Microsoft Azure. */
|
|
53588
|
+
Azure?: ConfigConnector_AzureConnectorConfiguration;
|
|
53589
|
+
});
|
|
53590
|
+
}
|
|
53591
|
+
|
|
53592
|
+
export declare class ConfigConnector_Tag {
|
|
53593
|
+
constructor(props: {
|
|
53594
|
+
/** 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:. */
|
|
53595
|
+
Key: string;
|
|
53596
|
+
/** 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:. */
|
|
53597
|
+
Value: string;
|
|
53598
|
+
});
|
|
53599
|
+
}
|
|
53600
|
+
|
|
53511
53601
|
export declare class ConfigData {
|
|
53512
53602
|
constructor(props: {
|
|
53513
53603
|
AntennaDownlinkConfig?: Config_AntennaDownlinkConfig;
|
|
@@ -54567,12 +54657,6 @@ export declare class ConnectionLogOptions {
|
|
|
54567
54657
|
});
|
|
54568
54658
|
}
|
|
54569
54659
|
|
|
54570
|
-
export declare class ConnectionParameters {
|
|
54571
|
-
constructor(props: {
|
|
54572
|
-
CodeStar?: CloudFormationProduct_CodeStarParameters;
|
|
54573
|
-
});
|
|
54574
|
-
}
|
|
54575
|
-
|
|
54576
54660
|
export declare class ConnectionPasswordEncryption {
|
|
54577
54661
|
constructor(props: {
|
|
54578
54662
|
/** An AWS KMS key that is used to encrypt the connection password. */
|
|
@@ -54634,6 +54718,13 @@ export declare class ConnectivityParameters {
|
|
|
54634
54718
|
});
|
|
54635
54719
|
}
|
|
54636
54720
|
|
|
54721
|
+
export declare class ConnectorConfiguration {
|
|
54722
|
+
constructor(props: {
|
|
54723
|
+
/** The configuration for connecting to Microsoft Azure. */
|
|
54724
|
+
Azure?: ConfigConnector_AzureConnectorConfiguration;
|
|
54725
|
+
});
|
|
54726
|
+
}
|
|
54727
|
+
|
|
54637
54728
|
export declare class ConnectorDefinition_Connector {
|
|
54638
54729
|
constructor(props: {
|
|
54639
54730
|
ConnectorArn: string;
|
|
@@ -55225,6 +55316,7 @@ export declare class ConnectRule_Actions {
|
|
|
55225
55316
|
constructor(props: {
|
|
55226
55317
|
/** Information about the contact category action. The syntax can be empty, for example, ``{}``. */
|
|
55227
55318
|
AssignContactCategoryActions?: any;
|
|
55319
|
+
AssignSlaActions?: any;
|
|
55228
55320
|
CreateCaseActions?: any;
|
|
55229
55321
|
EndAssociatedTasksActions?: any;
|
|
55230
55322
|
/** Information about the EV action. */
|
|
@@ -55241,7 +55333,7 @@ export declare class ConnectRule_Actions {
|
|
|
55241
55333
|
export declare class ConnectRule_RuleTriggerEventSource {
|
|
55242
55334
|
constructor(props: {
|
|
55243
55335
|
/** The name of the event source. */
|
|
55244
|
-
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
55336
|
+
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnEmailAnalysisAvailable" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnSchedulePublish" | "OnScheduleTimeOffRequestActivity" | "OnScheduleUpdate" | "OnSlaBreach" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
55245
55337
|
/** The Amazon Resource Name (ARN) of the integration association. ``IntegrationAssociationArn`` is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate`` */
|
|
55246
55338
|
IntegrationAssociationArn?: string;
|
|
55247
55339
|
});
|
|
@@ -100233,11 +100325,20 @@ export declare class ProvisionedPollerConfig {
|
|
|
100233
100325
|
|
|
100234
100326
|
export declare class ProvisioningArtifactProperties {
|
|
100235
100327
|
constructor(props: {
|
|
100328
|
+
/** Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
|
|
100329
|
+
|
|
100330
|
+
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
|
|
100331
|
+
|
|
100332
|
+
ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId] */
|
|
100236
100333
|
Info: Record<string, unknown>;
|
|
100334
|
+
/** The description of the provisioning artifact, including how it differs from the previous provisioning artifact. */
|
|
100237
100335
|
Description?: string;
|
|
100336
|
+
/** If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid. */
|
|
100238
100337
|
DisableTemplateValidation?: boolean;
|
|
100338
|
+
/** The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed. */
|
|
100239
100339
|
Name?: string;
|
|
100240
|
-
|
|
100340
|
+
/** The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL */
|
|
100341
|
+
Type?: "CLOUD_FORMATION_TEMPLATE" | "EXTERNAL" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_CLOUD" | "TERRAFORM_OPEN_SOURCE";
|
|
100241
100342
|
});
|
|
100242
100343
|
}
|
|
100243
100344
|
|
|
@@ -106905,7 +107006,7 @@ export declare class RulesSourceList {
|
|
|
106905
107006
|
export declare class RuleTriggerEventSource {
|
|
106906
107007
|
constructor(props: {
|
|
106907
107008
|
/** The name of the event source. */
|
|
106908
|
-
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
107009
|
+
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnEmailAnalysisAvailable" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnSchedulePublish" | "OnScheduleTimeOffRequestActivity" | "OnScheduleUpdate" | "OnSlaBreach" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
106909
107010
|
/** The Amazon Resource Name (ARN) of the integration association. ``IntegrationAssociationArn`` is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate`` */
|
|
106910
107011
|
IntegrationAssociationArn?: string;
|
|
106911
107012
|
});
|
|
@@ -113124,7 +113225,9 @@ export declare class SourceCodeVersion {
|
|
|
113124
113225
|
|
|
113125
113226
|
export declare class SourceConnection {
|
|
113126
113227
|
constructor(props: {
|
|
113127
|
-
|
|
113228
|
+
/** The connection details based on the connection Type. */
|
|
113229
|
+
ConnectionParameters: Record<string, unknown>;
|
|
113230
|
+
/** The only supported SourceConnection type is Codestar. */
|
|
113128
113231
|
Type: string;
|
|
113129
113232
|
});
|
|
113130
113233
|
}
|
|
@@ -130650,6 +130753,8 @@ export type Route53GlobalResolverFirewallDomainList_CRResourceStatus =
|
|
|
130650
130753
|
|
|
130651
130754
|
export type RouteCalculator_PricingPlan = "RequestBasedUsage";
|
|
130652
130755
|
|
|
130756
|
+
export type RouterInput_ContentQualityAnalysisState = "DISABLED" | "ENABLED";
|
|
130757
|
+
|
|
130653
130758
|
export type RouterInput_Day =
|
|
130654
130759
|
| "FRIDAY"
|
|
130655
130760
|
| "MONDAY"
|
|
@@ -130671,6 +130776,8 @@ export type RouterInput_MediaLiveChannelPipelineId = "PIPELINE_0" | "PIPELINE_1"
|
|
|
130671
130776
|
|
|
130672
130777
|
export type RouterInput_MediaLiveTransitEncryptionKeyType = "AUTOMATIC" | "SECRETS_MANAGER";
|
|
130673
130778
|
|
|
130779
|
+
export type RouterInput_RouterContentQualityAnalysisType = "CONTENT_LEVEL";
|
|
130780
|
+
|
|
130674
130781
|
export type RouterInput_RouterInputProtocol = "RIST" | "RTP" | "SRT_CALLER" | "SRT_LISTENER";
|
|
130675
130782
|
|
|
130676
130783
|
export type RouterInput_RouterInputState =
|
package/src/generated/index.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { createResource, createProperty } from "./runtime";
|
|
3
3
|
|
|
4
4
|
export const Accelerator = createResource("AWS::GlobalAccelerator::Accelerator", "aws", {"AcceleratorArn":"AcceleratorArn","DnsName":"DnsName","Ipv4Addresses":"Ipv4Addresses","Ipv6Addresses":"Ipv6Addresses","DualStackDnsName":"DualStackDnsName"});
|
|
5
|
-
export const AcceptedPortfolioShare = createResource("AWS::ServiceCatalog::AcceptedPortfolioShare", "aws", {
|
|
5
|
+
export const AcceptedPortfolioShare = createResource("AWS::ServiceCatalog::AcceptedPortfolioShare", "aws", {});
|
|
6
6
|
export const AccessEntry = createResource("AWS::EKS::AccessEntry", "aws", {"AccessEntryArn":"AccessEntryArn"});
|
|
7
7
|
export const AccessGrant = createResource("AWS::S3::AccessGrant", "aws", {"AccessGrantId":"AccessGrantId","AccessGrantArn":"AccessGrantArn","GrantScope":"GrantScope"});
|
|
8
8
|
export const AccessGrantsInstance = createResource("AWS::S3::AccessGrantsInstance", "aws", {"AccessGrantsInstanceArn":"AccessGrantsInstanceArn","AccessGrantsInstanceId":"AccessGrantsInstanceId"});
|
|
@@ -226,7 +226,7 @@ export const ClientVpnRoute = createResource("AWS::EC2::ClientVpnRoute", "aws",
|
|
|
226
226
|
export const ClientVpnTargetNetworkAssociation = createResource("AWS::EC2::ClientVpnTargetNetworkAssociation", "aws", {"Id":"Id"});
|
|
227
227
|
export const CloudAutonomousVmCluster = createResource("AWS::ODB::CloudAutonomousVmCluster", "aws", {"CloudAutonomousVmClusterId":"CloudAutonomousVmClusterId","CloudAutonomousVmClusterArn":"CloudAutonomousVmClusterArn","OciResourceAnchorName":"OciResourceAnchorName","AutonomousDataStoragePercentage":"AutonomousDataStoragePercentage","AvailableAutonomousDataStorageSizeInTBs":"AvailableAutonomousDataStorageSizeInTBs","AvailableContainerDatabases":"AvailableContainerDatabases","AvailableCpus":"AvailableCpus","ComputeModel":"ComputeModel","CpuCoreCount":"CpuCoreCount","CpuPercentage":"CpuPercentage","DataStorageSizeInGBs":"DataStorageSizeInGBs","DataStorageSizeInTBs":"DataStorageSizeInTBs","DbNodeStorageSizeInGBs":"DbNodeStorageSizeInGBs","Domain":"Domain","ExadataStorageInTBsLowestScaledValue":"ExadataStorageInTBsLowestScaledValue","Hostname":"Hostname","Ocid":"Ocid","OciUrl":"OciUrl","MaxAcdsLowestScaledValue":"MaxAcdsLowestScaledValue","MemorySizeInGBs":"MemorySizeInGBs","NodeCount":"NodeCount","NonProvisionableAutonomousContainerDatabases":"NonProvisionableAutonomousContainerDatabases","ProvisionableAutonomousContainerDatabases":"ProvisionableAutonomousContainerDatabases","ProvisionedAutonomousContainerDatabases":"ProvisionedAutonomousContainerDatabases","ProvisionedCpus":"ProvisionedCpus","ReclaimableCpus":"ReclaimableCpus","ReservedCpus":"ReservedCpus","Shape":"Shape","IamRoles_Item_Status":"IamRoles.*.Status"});
|
|
228
228
|
export const CloudExadataInfrastructure = createResource("AWS::ODB::CloudExadataInfrastructure", "aws", {"ActivatedStorageCount":"ActivatedStorageCount","AdditionalStorageCount":"AdditionalStorageCount","AvailableStorageSizeInGBs":"AvailableStorageSizeInGBs","CloudExadataInfrastructureArn":"CloudExadataInfrastructureArn","CloudExadataInfrastructureId":"CloudExadataInfrastructureId","ComputeModel":"ComputeModel","CpuCount":"CpuCount","DataStorageSizeInTBs":"DataStorageSizeInTBs","DbNodeStorageSizeInGBs":"DbNodeStorageSizeInGBs","DbServerVersion":"DbServerVersion","MaxCpuCount":"MaxCpuCount","MaxDataStorageInTBs":"MaxDataStorageInTBs","MaxDbNodeStorageSizeInGBs":"MaxDbNodeStorageSizeInGBs","MaxMemoryInGBs":"MaxMemoryInGBs","MemorySizeInGBs":"MemorySizeInGBs","OciResourceAnchorName":"OciResourceAnchorName","OciUrl":"OciUrl","Ocid":"Ocid","StorageServerVersion":"StorageServerVersion","TotalStorageSizeInGBs":"TotalStorageSizeInGBs","DbServerIds":"DbServerIds"});
|
|
229
|
-
export const CloudFormationProduct = createResource("AWS::ServiceCatalog::CloudFormationProduct", "aws", {"
|
|
229
|
+
export const CloudFormationProduct = createResource("AWS::ServiceCatalog::CloudFormationProduct", "aws", {"Id":"Id","ProvisioningArtifactIds":"ProvisioningArtifactIds","ProvisioningArtifactNames":"ProvisioningArtifactNames","ProductName":"ProductName"});
|
|
230
230
|
export const CloudFormationProvisionedProduct = createResource("AWS::ServiceCatalog::CloudFormationProvisionedProduct", "aws", {"RecordId":"RecordId","CloudformationStackArn":"CloudformationStackArn","Outputs":"Outputs","ProvisionedProductId":"ProvisionedProductId"});
|
|
231
231
|
export const CloudFrontOriginAccessIdentity = createResource("AWS::CloudFront::CloudFrontOriginAccessIdentity", "aws", {"Id":"Id","S3CanonicalUserId":"S3CanonicalUserId"});
|
|
232
232
|
export const CloudTrailChannel = createResource("AWS::CloudTrail::Channel", "aws", {"ChannelArn":"ChannelArn"});
|
|
@@ -267,6 +267,7 @@ export const ComputeEnvironment = createResource("AWS::Batch::ComputeEnvironment
|
|
|
267
267
|
export const ComputeNodeGroup = createResource("AWS::PCS::ComputeNodeGroup", "aws", {"Arn":"Arn","ErrorInfo":"ErrorInfo","Id":"Id","Status":"Status"});
|
|
268
268
|
export const ComputeOptimizerAutomationRule = createResource("AWS::ComputeOptimizer::AutomationRule", "aws", {"RuleArn":"RuleArn","RuleId":"RuleId","RuleRevision":"RuleRevision","AccountId":"AccountId","CreatedTimestamp":"CreatedTimestamp","LastUpdatedTimestamp":"LastUpdatedTimestamp"});
|
|
269
269
|
export const Config = createResource("AWS::GroundStation::Config", "aws", {"Arn":"Arn","Id":"Id","Type":"Type"});
|
|
270
|
+
export const ConfigConnector = createResource("AWS::Config::Connector", "aws", {"Arn":"Arn","Name":"Name","CreatedTime":"CreatedTime"});
|
|
270
271
|
export const ConfigRule = createResource("AWS::Config::ConfigRule", "aws", {"ConfigRuleId":"ConfigRuleId","Compliance_Type":"Compliance.Type","Arn":"Arn"});
|
|
271
272
|
export const ConfigurationAggregator = createResource("AWS::Config::ConfigurationAggregator", "aws", {"ConfigurationAggregatorArn":"ConfigurationAggregatorArn"});
|
|
272
273
|
export const ConfigurationAssociation = createResource("AWS::AmazonMQ::ConfigurationAssociation", "aws", {"Id":"Id"});
|
|
@@ -452,6 +453,7 @@ export const DomainConfiguration = createResource("AWS::IoT::DomainConfiguration
|
|
|
452
453
|
export const DomainNameAccessAssociation = createResource("AWS::ApiGateway::DomainNameAccessAssociation", "aws", {"DomainNameAccessAssociationArn":"DomainNameAccessAssociationArn"});
|
|
453
454
|
export const DomainNameApiAssociation = createResource("AWS::AppSync::DomainNameApiAssociation", "aws", {"ApiAssociationIdentifier":"ApiAssociationIdentifier"});
|
|
454
455
|
export const DomainNameV2 = createResource("AWS::ApiGateway::DomainNameV2", "aws", {"DomainNameId":"DomainNameId","DomainNameArn":"DomainNameArn"});
|
|
456
|
+
export const DomainObjectType = createResource("AWS::CustomerProfiles::DomainObjectType", "aws", {"CreatedAt":"CreatedAt","LastUpdatedAt":"LastUpdatedAt"});
|
|
455
457
|
export const DomainUnit = createResource("AWS::DataZone::DomainUnit", "aws", {"CreatedAt":"CreatedAt","DomainId":"DomainId","Id":"Id","Identifier":"Identifier","ParentDomainUnitId":"ParentDomainUnitId","LastUpdatedAt":"LastUpdatedAt"});
|
|
456
458
|
export const DomainVerification = createResource("AWS::VpcLattice::DomainVerification", "aws", {"TxtMethodConfig":"TxtMethodConfig","Status":"Status","Id":"Id","Arn":"Arn"});
|
|
457
459
|
export const DRTAccess = createResource("AWS::Shield::DRTAccess", "aws", {"AccountId":"AccountId"});
|
|
@@ -491,7 +493,7 @@ export const EmailContact = createResource("AWS::NotificationsContacts::EmailCon
|
|
|
491
493
|
export const EmailIdentity = createResource("AWS::SES::EmailIdentity", "aws", {"DkimDNSTokenName1":"DkimDNSTokenName1","DkimDNSTokenName2":"DkimDNSTokenName2","DkimDNSTokenName3":"DkimDNSTokenName3","DkimDNSTokenValue1":"DkimDNSTokenValue1","DkimDNSTokenValue2":"DkimDNSTokenValue2","DkimDNSTokenValue3":"DkimDNSTokenValue3"});
|
|
492
494
|
export const EmailTemplate = createResource("AWS::Pinpoint::EmailTemplate", "aws", {"Id":"Id","Arn":"Arn"});
|
|
493
495
|
export const EMRCluster = createResource("AWS::EMR::Cluster", "aws", {"Id":"Id","MasterPublicDNS":"MasterPublicDNS"});
|
|
494
|
-
export const EMRContainersEndpoint = createResource("AWS::EMRContainers::Endpoint", "aws", {"Arn":"Arn","Id":"Id","ServerUrl":"ServerUrl","State":"State","StateDetails":"StateDetails","FailureReason":"FailureReason","CreatedAt":"CreatedAt","SecurityGroup":"SecurityGroup","CertificateAuthority":"CertificateAuthority"});
|
|
496
|
+
export const EMRContainersEndpoint = createResource("AWS::EMRContainers::Endpoint", "aws", {"Arn":"Arn","Id":"Id","ServerUrl":"ServerUrl","State":"State","StateDetails":"StateDetails","FailureReason":"FailureReason","CreatedAt":"CreatedAt","SecurityGroup":"SecurityGroup","CertificateAuthority":"CertificateAuthority","AuthProxyUrl":"AuthProxyUrl"});
|
|
495
497
|
export const EMRContainersSecurityConfiguration = createResource("AWS::EMRContainers::SecurityConfiguration", "aws", {"Arn":"Arn","Id":"Id"});
|
|
496
498
|
export const EMRSecurityConfiguration = createResource("AWS::EMR::SecurityConfiguration", "aws", {});
|
|
497
499
|
export const EMRServerlessApplication = createResource("AWS::EMRServerless::Application", "aws", {"Arn":"Arn","ApplicationId":"ApplicationId"});
|
|
@@ -1230,7 +1232,7 @@ export const Route53RecoveryReadinessResourceSet = createResource("AWS::Route53R
|
|
|
1230
1232
|
export const Route53ResolverFirewallDomainList = createResource("AWS::Route53Resolver::FirewallDomainList", "aws", {"Id":"Id","Arn":"Arn","DomainCount":"DomainCount","Status":"Status","StatusMessage":"StatusMessage","ManagedOwnerName":"ManagedOwnerName","CreatorRequestId":"CreatorRequestId","CreationTime":"CreationTime","ModificationTime":"ModificationTime"});
|
|
1231
1233
|
export const RouteCalculator = createResource("AWS::Location::RouteCalculator", "aws", {"CalculatorArn":"CalculatorArn","Arn":"Arn","CreateTime":"CreateTime","UpdateTime":"UpdateTime"});
|
|
1232
1234
|
export const RouteResponse = createResource("AWS::ApiGatewayV2::RouteResponse", "aws", {"RouteResponseId":"RouteResponseId"});
|
|
1233
|
-
export const RouterInput = createResource("AWS::MediaConnect::RouterInput", "aws", {"Arn":"Arn","CreatedAt":"CreatedAt","Id":"Id","InputType":"InputType","IpAddress":"IpAddress","MaintenanceType":"MaintenanceType","RoutedOutputs":"RoutedOutputs","State":"State","UpdatedAt":"UpdatedAt"});
|
|
1235
|
+
export const RouterInput = createResource("AWS::MediaConnect::RouterInput", "aws", {"Arn":"Arn","ContentQualityAnalysisType":"ContentQualityAnalysisType","CreatedAt":"CreatedAt","Id":"Id","InputType":"InputType","IpAddress":"IpAddress","MaintenanceType":"MaintenanceType","RoutedOutputs":"RoutedOutputs","State":"State","UpdatedAt":"UpdatedAt"});
|
|
1234
1236
|
export const RouterNetworkInterface = createResource("AWS::MediaConnect::RouterNetworkInterface", "aws", {"Arn":"Arn","AssociatedInputCount":"AssociatedInputCount","AssociatedOutputCount":"AssociatedOutputCount","CreatedAt":"CreatedAt","Id":"Id","NetworkInterfaceType":"NetworkInterfaceType","State":"State","UpdatedAt":"UpdatedAt"});
|
|
1235
1237
|
export const RouterOutput = createResource("AWS::MediaConnect::RouterOutput", "aws", {"Arn":"Arn","CreatedAt":"CreatedAt","Id":"Id","IpAddress":"IpAddress","MaintenanceType":"MaintenanceType","OutputType":"OutputType","RoutedState":"RoutedState","State":"State","UpdatedAt":"UpdatedAt"});
|
|
1236
1238
|
export const RouteServer = createResource("AWS::EC2::RouteServer", "aws", {"Arn":"Arn","Id":"Id"});
|
|
@@ -1377,7 +1379,7 @@ export const SpotFleet = createResource("AWS::EC2::SpotFleet", "aws", {"Id":"Id"
|
|
|
1377
1379
|
export const SqlHaStandbyDetectedInstance = createResource("AWS::EC2::SqlHaStandbyDetectedInstance", "aws", {"HaStatus":"HaStatus","SqlServerLicenseUsage":"SqlServerLicenseUsage","LastUpdatedTime":"LastUpdatedTime"});
|
|
1378
1380
|
export const SSMAssociation = createResource("AWS::SSM::Association", "aws", {"AssociationId":"AssociationId"});
|
|
1379
1381
|
export const SSMContactsPlan = createResource("AWS::SSMContacts::Plan", "aws", {"Arn":"Arn"});
|
|
1380
|
-
export const SsmParameter = createResource("AWS::SSM::Parameter", "aws", {});
|
|
1382
|
+
export const SsmParameter = createResource("AWS::SSM::Parameter", "aws", {"Arn":"Arn"});
|
|
1381
1383
|
export const SSMResourcePolicy = createResource("AWS::SSM::ResourcePolicy", "aws", {"PolicyId":"PolicyId","PolicyHash":"PolicyHash"});
|
|
1382
1384
|
export const SSOApplication = createResource("AWS::SSO::Application", "aws", {"ApplicationArn":"ApplicationArn","IdentityStoreArn":"IdentityStoreArn"});
|
|
1383
1385
|
export const SSOInstance = createResource("AWS::SSO::Instance", "aws", {"InstanceArn":"InstanceArn","OwnerAccountId":"OwnerAccountId","IdentityStoreId":"IdentityStoreId","Status":"Status"});
|
|
@@ -2391,6 +2393,7 @@ export const AWSResources = createProperty("AWS::SecurityAgent::AgentSpace.AWSRe
|
|
|
2391
2393
|
export const AwsSecurityFindingFilters = createProperty("AWS::SecurityHub::Insight.AwsSecurityFindingFilters", "aws");
|
|
2392
2394
|
export const AWSService = createProperty("AWS::AuditManager::Assessment.AWSService", "aws");
|
|
2393
2395
|
export const AzureBlobSasConfiguration = createProperty("AWS::DataSync::LocationAzureBlob.AzureBlobSasConfiguration", "aws");
|
|
2396
|
+
export const AzureConnectorConfiguration = createProperty("AWS::Config::Connector.AzureConnectorConfiguration", "aws");
|
|
2394
2397
|
export const B2BICapability_S3Location = createProperty("AWS::B2BI::Capability.S3Location", "aws");
|
|
2395
2398
|
export const B2BICapability_Tag = createProperty("AWS::B2BI::Capability.Tag", "aws");
|
|
2396
2399
|
export const B2BIProfile_Tag = createProperty("AWS::B2BI::Profile.Tag", "aws");
|
|
@@ -2954,8 +2957,6 @@ export const CloudExadataInfrastructure_CustomerContact = createProperty("AWS::O
|
|
|
2954
2957
|
export const CloudExadataInfrastructure_MaintenanceWindow = createProperty("AWS::ODB::CloudExadataInfrastructure.MaintenanceWindow", "aws");
|
|
2955
2958
|
export const CloudExadataInfrastructure_Tag = createProperty("AWS::ODB::CloudExadataInfrastructure.Tag", "aws");
|
|
2956
2959
|
export const CloudFormationCollectionFilter = createProperty("AWS::DevOpsGuru::ResourceCollection.CloudFormationCollectionFilter", "aws");
|
|
2957
|
-
export const CloudFormationProduct_CodeStarParameters = createProperty("AWS::ServiceCatalog::CloudFormationProduct.CodeStarParameters", "aws");
|
|
2958
|
-
export const CloudFormationProduct_ConnectionParameters = createProperty("AWS::ServiceCatalog::CloudFormationProduct.ConnectionParameters", "aws");
|
|
2959
2960
|
export const CloudFormationProduct_ProvisioningArtifactProperties = createProperty("AWS::ServiceCatalog::CloudFormationProduct.ProvisioningArtifactProperties", "aws");
|
|
2960
2961
|
export const CloudFormationProduct_SourceConnection = createProperty("AWS::ServiceCatalog::CloudFormationProduct.SourceConnection", "aws");
|
|
2961
2962
|
export const CloudFormationProduct_Tag = createProperty("AWS::ServiceCatalog::CloudFormationProduct.Tag", "aws");
|
|
@@ -3087,7 +3088,6 @@ export const CodeSigningConfig_CodeSigningPolicies = createProperty("AWS::Lambda
|
|
|
3087
3088
|
export const CodeSigningConfig_Tag = createProperty("AWS::Lambda::CodeSigningConfig.Tag", "aws");
|
|
3088
3089
|
export const CodeSigningPolicies = createProperty("AWS::Lambda::CodeSigningConfig.CodeSigningPolicies", "aws");
|
|
3089
3090
|
export const CodeStarConnectionsConnection_Tag = createProperty("AWS::CodeStarConnections::Connection.Tag", "aws");
|
|
3090
|
-
export const CodeStarParameters = createProperty("AWS::ServiceCatalog::CloudFormationProduct.CodeStarParameters", "aws");
|
|
3091
3091
|
export const CognitoIdentityProvider = createProperty("AWS::Cognito::IdentityPool.CognitoIdentityProvider", "aws");
|
|
3092
3092
|
export const CognitoMemberDefinition = createProperty("AWS::SageMaker::Workteam.CognitoMemberDefinition", "aws");
|
|
3093
3093
|
export const CognitoStreams = createProperty("AWS::Cognito::IdentityPool.CognitoStreams", "aws");
|
|
@@ -3187,6 +3187,9 @@ export const Config_TelemetrySinkData = createProperty("AWS::GroundStation::Conf
|
|
|
3187
3187
|
export const Config_TrackingConfig = createProperty("AWS::GroundStation::Config.TrackingConfig", "aws");
|
|
3188
3188
|
export const Config_UplinkEchoConfig = createProperty("AWS::GroundStation::Config.UplinkEchoConfig", "aws");
|
|
3189
3189
|
export const Config_UplinkSpectrumConfig = createProperty("AWS::GroundStation::Config.UplinkSpectrumConfig", "aws");
|
|
3190
|
+
export const ConfigConnector_AzureConnectorConfiguration = createProperty("AWS::Config::Connector.AzureConnectorConfiguration", "aws");
|
|
3191
|
+
export const ConfigConnector_ConnectorConfiguration = createProperty("AWS::Config::Connector.ConnectorConfiguration", "aws");
|
|
3192
|
+
export const ConfigConnector_Tag = createProperty("AWS::Config::Connector.Tag", "aws");
|
|
3190
3193
|
export const ConfigData = createProperty("AWS::GroundStation::Config.ConfigData", "aws");
|
|
3191
3194
|
export const ConfigParameter = createProperty("AWS::RedshiftServerless::Workgroup.ConfigParameter", "aws");
|
|
3192
3195
|
export const ConfigRule_CustomPolicyDetails = createProperty("AWS::Config::ConfigRule.CustomPolicyDetails", "aws");
|
|
@@ -3307,7 +3310,6 @@ export const ConnectionGroup_Tag = createProperty("AWS::CloudFront::ConnectionGr
|
|
|
3307
3310
|
export const ConnectionHttpParameters = createProperty("AWS::Events::Connection.ConnectionHttpParameters", "aws");
|
|
3308
3311
|
export const ConnectionInput = createProperty("AWS::Glue::Connection.ConnectionInput", "aws");
|
|
3309
3312
|
export const ConnectionLogOptions = createProperty("AWS::EC2::ClientVpnEndpoint.ConnectionLogOptions", "aws");
|
|
3310
|
-
export const ConnectionParameters = createProperty("AWS::ServiceCatalog::CloudFormationProduct.ConnectionParameters", "aws");
|
|
3311
3313
|
export const ConnectionPasswordEncryption = createProperty("AWS::Glue::DataCatalogEncryptionSettings.ConnectionPasswordEncryption", "aws");
|
|
3312
3314
|
export const ConnectionPoolConfigurationInfoFormat = createProperty("AWS::RDS::DBProxyTargetGroup.ConnectionPoolConfigurationInfoFormat", "aws");
|
|
3313
3315
|
export const ConnectionPortRange = createProperty("AWS::GameLift::ContainerFleet.ConnectionPortRange", "aws");
|
|
@@ -3315,6 +3317,7 @@ export const ConnectionSettings = createProperty("AWS::ElasticLoadBalancing::Loa
|
|
|
3315
3317
|
export const ConnectionsList = createProperty("AWS::Glue::Job.ConnectionsList", "aws");
|
|
3316
3318
|
export const ConnectivityInfo = createProperty("AWS::MSK::Cluster.ConnectivityInfo", "aws");
|
|
3317
3319
|
export const ConnectivityParameters = createProperty("AWS::Events::Connection.ConnectivityParameters", "aws");
|
|
3320
|
+
export const ConnectorConfiguration = createProperty("AWS::Config::Connector.ConnectorConfiguration", "aws");
|
|
3318
3321
|
export const ConnectorDefinition_Connector = createProperty("AWS::Greengrass::ConnectorDefinition.Connector", "aws");
|
|
3319
3322
|
export const ConnectorDefinition_ConnectorDefinitionVersion = createProperty("AWS::Greengrass::ConnectorDefinition.ConnectorDefinitionVersion", "aws");
|
|
3320
3323
|
export const ConnectorDefinitionVersion_Connector = createProperty("AWS::Greengrass::ConnectorDefinitionVersion.Connector", "aws");
|