@intentius/chant-lexicon-aws 0.18.36 → 0.18.37
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/generated/index.d.ts +16 -2
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +220 -16
- package/dist/types/index.d.ts +190 -13
- package/package.json +2 -2
- package/src/generated/index.d.ts +190 -13
- package/src/generated/index.ts +17 -3
- package/src/generated/lexicon-aws.json +220 -16
package/src/generated/index.d.ts
CHANGED
|
@@ -8777,6 +8777,31 @@ export declare class DataTableRecord {
|
|
|
8777
8777
|
readonly RecordId: string;
|
|
8778
8778
|
}
|
|
8779
8779
|
|
|
8780
|
+
export declare class DataTransformationProfile {
|
|
8781
|
+
constructor(props: {
|
|
8782
|
+
/** The human-readable name of the profile. */
|
|
8783
|
+
ProfileName: string;
|
|
8784
|
+
/** The source format that this profile converts from. */
|
|
8785
|
+
SourceFormat: "CCDA" | "CSV";
|
|
8786
|
+
/** The Amazon Resource Name (ARN) of the data transformation profile. */
|
|
8787
|
+
Arn?: string;
|
|
8788
|
+
/** The identifier (key ID or ARN) of a customer-managed KMS key used to encrypt the profile's template content at rest. If omitted, an AWS owned key is used. */
|
|
8789
|
+
KmsKeyId?: string;
|
|
8790
|
+
/** A human-readable description of the profile's purpose. */
|
|
8791
|
+
ProfileDescription?: string;
|
|
8792
|
+
/** The unique, server-generated identifier of the profile (32-character lowercase hexadecimal). */
|
|
8793
|
+
ProfileId?: string;
|
|
8794
|
+
Source?: DataTransformationProfile_Source;
|
|
8795
|
+
/** An array of key-value pairs to apply to this profile. */
|
|
8796
|
+
Tags?: DataTransformationProfile_Tag[];
|
|
8797
|
+
/** The target format that this profile converts to. Always FHIR_R4. */
|
|
8798
|
+
TargetFormat?: "FHIR_R4";
|
|
8799
|
+
}, attributes?: CFResourceAttributes);
|
|
8800
|
+
readonly Arn: string;
|
|
8801
|
+
readonly ProfileId: string;
|
|
8802
|
+
readonly TargetFormat: "FHIR_R4";
|
|
8803
|
+
}
|
|
8804
|
+
|
|
8780
8805
|
export declare class DataZoneConnection {
|
|
8781
8806
|
constructor(props: {
|
|
8782
8807
|
/** The identifier of the domain in which the connection is created. */
|
|
@@ -10413,6 +10438,42 @@ export declare class DecoderManifest {
|
|
|
10413
10438
|
readonly LastModificationTime: string;
|
|
10414
10439
|
}
|
|
10415
10440
|
|
|
10441
|
+
export declare class DefaultPromptRouter {
|
|
10442
|
+
constructor(props: {
|
|
10443
|
+
/** The timestamp when the default prompt router was created. */
|
|
10444
|
+
CreatedAt?: string;
|
|
10445
|
+
/** The description of the default prompt router. */
|
|
10446
|
+
Description?: string;
|
|
10447
|
+
FallbackModel?: DefaultPromptRouter_PromptRouterTargetModel;
|
|
10448
|
+
/** A list of foundation models that the default prompt router can route requests to. */
|
|
10449
|
+
Models?: DefaultPromptRouter_PromptRouterTargetModel[];
|
|
10450
|
+
/** The Amazon Resource Name (ARN) of the default prompt router. */
|
|
10451
|
+
PromptRouterArn?: string;
|
|
10452
|
+
/** The unique identifier of the default prompt router, extracted from the ARN. */
|
|
10453
|
+
PromptRouterId?: string;
|
|
10454
|
+
/** The name of the default prompt router. */
|
|
10455
|
+
PromptRouterName?: string;
|
|
10456
|
+
RoutingCriteria?: DefaultPromptRouter_RoutingCriteria;
|
|
10457
|
+
/** The status of the default prompt router. */
|
|
10458
|
+
Status?: "AVAILABLE";
|
|
10459
|
+
/** The type of the prompt router. */
|
|
10460
|
+
Type?: "custom" | "default";
|
|
10461
|
+
/** The timestamp when the default prompt router was last updated. */
|
|
10462
|
+
UpdatedAt?: string;
|
|
10463
|
+
}, attributes?: CFResourceAttributes);
|
|
10464
|
+
readonly CreatedAt: string;
|
|
10465
|
+
readonly Description: string;
|
|
10466
|
+
readonly FallbackModel: DefaultPromptRouter_PromptRouterTargetModel;
|
|
10467
|
+
readonly Models: DefaultPromptRouter_PromptRouterTargetModel[];
|
|
10468
|
+
readonly PromptRouterArn: string;
|
|
10469
|
+
readonly PromptRouterId: string;
|
|
10470
|
+
readonly PromptRouterName: string;
|
|
10471
|
+
readonly RoutingCriteria: DefaultPromptRouter_RoutingCriteria;
|
|
10472
|
+
readonly Status: "AVAILABLE";
|
|
10473
|
+
readonly Type: "custom" | "default";
|
|
10474
|
+
readonly UpdatedAt: string;
|
|
10475
|
+
}
|
|
10476
|
+
|
|
10416
10477
|
export declare class DefaultViewAssociation {
|
|
10417
10478
|
constructor(props: {
|
|
10418
10479
|
ViewArn: string;
|
|
@@ -12369,6 +12430,7 @@ export declare class EgressOnlyInternetGateway {
|
|
|
12369
12430
|
|
|
12370
12431
|
export declare class EIP {
|
|
12371
12432
|
constructor(props: {
|
|
12433
|
+
/** An Elastic IP address or a carrier IP address in a Wavelength Zone. */
|
|
12372
12434
|
Address?: string;
|
|
12373
12435
|
AllocationId?: string;
|
|
12374
12436
|
/** The network (``vpc``).
|
|
@@ -12377,6 +12439,7 @@ export declare class EIP {
|
|
|
12377
12439
|
/** The ID of the instance.
|
|
12378
12440
|
Updates to the ``InstanceId`` property may require *some interruptions*. Updates on an EIP reassociates the address on its associated resource. */
|
|
12379
12441
|
InstanceId?: string;
|
|
12442
|
+
/** The ID of an IPAM pool which has an Amazon-provided or BYOIP public IPv4 CIDR provisioned to it. For more information, see [Allocate sequential Elastic IP addresses from an IPAM pool](https://docs.aws.amazon.com/vpc/latest/ipam/tutorials-eip-pool.html) in the *Amazon VPC IPAM User Guide*. */
|
|
12380
12443
|
IpamPoolId?: string;
|
|
12381
12444
|
/** A unique set of Availability Zones, Local Zones, or Wavelength Zones from which AWS advertises IP addresses. Use this parameter to limit the IP address to this location. IP addresses cannot move between network border groups.
|
|
12382
12445
|
Use [DescribeAvailabilityZones](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAvailabilityZones.html) to view the network border groups. */
|
|
@@ -19497,8 +19560,12 @@ export declare class LambdaHook {
|
|
|
19497
19560
|
LambdaFunction: string;
|
|
19498
19561
|
/** Which operations should this Hook run against? Resource changes, stacks or change sets. */
|
|
19499
19562
|
TargetOperations: LambdaHook_TargetOperation[];
|
|
19563
|
+
/** Whether to automatically update the extension in this account and Region when a new minor version is published by the extension publisher. */
|
|
19564
|
+
AutoUpdate?: boolean;
|
|
19500
19565
|
/** The Amazon Resource Name (ARN) of the activated hook */
|
|
19501
19566
|
HookArn?: string;
|
|
19567
|
+
/** Contains logging configuration information for the hook. */
|
|
19568
|
+
LoggingConfig?: LambdaHook_LoggingConfig;
|
|
19502
19569
|
/** Filters to allow hooks to target specific stack attributes */
|
|
19503
19570
|
StackFilters?: Record<string, unknown>;
|
|
19504
19571
|
/** Attribute to specify which targets should invoke the hook */
|
|
@@ -24962,11 +25029,16 @@ export declare class OrganizationConformancePack {
|
|
|
24962
25029
|
DeliveryS3KeyPrefix?: string;
|
|
24963
25030
|
/** A list of AWS accounts to be excluded from an organization conformance pack while deploying a conformance pack. */
|
|
24964
25031
|
ExcludedAccounts?: string[];
|
|
25032
|
+
/** Amazon Resource Name (ARN) of the organization conformance pack. */
|
|
25033
|
+
OrganizationConformancePackArn?: string;
|
|
25034
|
+
/** The tags for the organization conformance pack. */
|
|
25035
|
+
Tags?: OrganizationConformancePack_Tag[];
|
|
24965
25036
|
/** A string containing full conformance pack template body. */
|
|
24966
25037
|
TemplateBody?: string;
|
|
24967
25038
|
/** Location of file containing the template body. */
|
|
24968
25039
|
TemplateS3Uri?: string;
|
|
24969
25040
|
}, attributes?: CFResourceAttributes);
|
|
25041
|
+
readonly OrganizationConformancePackArn: string;
|
|
24970
25042
|
}
|
|
24971
25043
|
|
|
24972
25044
|
export declare class OrganizationsAccount {
|
|
@@ -40311,6 +40383,13 @@ export declare class AllowedStatistics {
|
|
|
40311
40383
|
});
|
|
40312
40384
|
}
|
|
40313
40385
|
|
|
40386
|
+
export declare class AllowedWorkloadConfiguration {
|
|
40387
|
+
constructor(props: {
|
|
40388
|
+
HostingEnvironments?: any;
|
|
40389
|
+
WorkloadIdentities?: any;
|
|
40390
|
+
});
|
|
40391
|
+
}
|
|
40392
|
+
|
|
40314
40393
|
export declare class AllowList_Tag {
|
|
40315
40394
|
constructor(props: {
|
|
40316
40395
|
/** The tag's key. */
|
|
@@ -57671,6 +57750,7 @@ export declare class CustomDocumentEnrichmentConfiguration {
|
|
|
57671
57750
|
export declare class CustomDomainConfigType {
|
|
57672
57751
|
constructor(props: {
|
|
57673
57752
|
CertificateArn?: string;
|
|
57753
|
+
SecurityPolicy?: string;
|
|
57674
57754
|
});
|
|
57675
57755
|
}
|
|
57676
57756
|
|
|
@@ -61635,6 +61715,46 @@ export declare class DataTable_Tag {
|
|
|
61635
61715
|
});
|
|
61636
61716
|
}
|
|
61637
61717
|
|
|
61718
|
+
export declare class DataTransformationProfile_ExistingVersionedProfileSource {
|
|
61719
|
+
constructor(props: {
|
|
61720
|
+
/** The unique identifier of the source profile to clone. */
|
|
61721
|
+
ProfileId: string;
|
|
61722
|
+
/** The version number of the source profile to clone. */
|
|
61723
|
+
Version: number;
|
|
61724
|
+
});
|
|
61725
|
+
}
|
|
61726
|
+
|
|
61727
|
+
export declare class DataTransformationProfile_ProfileMappingSource {
|
|
61728
|
+
constructor(props: {
|
|
61729
|
+
/** Map of template file paths to their Velocity template content. */
|
|
61730
|
+
ProfileMapping: Record<string, unknown>;
|
|
61731
|
+
});
|
|
61732
|
+
}
|
|
61733
|
+
|
|
61734
|
+
export declare class DataTransformationProfile_Source {
|
|
61735
|
+
constructor(props: {
|
|
61736
|
+
ExistingVersionedProfileId?: DataTransformationProfile_ExistingVersionedProfileSource;
|
|
61737
|
+
ProfileMapping?: DataTransformationProfile_ProfileMappingSource;
|
|
61738
|
+
StarterProfile?: DataTransformationProfile_StarterProfileSource;
|
|
61739
|
+
});
|
|
61740
|
+
}
|
|
61741
|
+
|
|
61742
|
+
export declare class DataTransformationProfile_StarterProfileSource {
|
|
61743
|
+
constructor(props: {
|
|
61744
|
+
/** The name of the starter profile to seed the profile from. */
|
|
61745
|
+
StarterProfileName: string;
|
|
61746
|
+
});
|
|
61747
|
+
}
|
|
61748
|
+
|
|
61749
|
+
export declare class DataTransformationProfile_Tag {
|
|
61750
|
+
constructor(props: {
|
|
61751
|
+
/** The key of the tag. */
|
|
61752
|
+
Key: string;
|
|
61753
|
+
/** The value of the tag. */
|
|
61754
|
+
Value: string;
|
|
61755
|
+
});
|
|
61756
|
+
}
|
|
61757
|
+
|
|
61638
61758
|
export declare class DataZoneConnection_AwsLocation {
|
|
61639
61759
|
constructor(props: {
|
|
61640
61760
|
AccessRole?: string;
|
|
@@ -62295,6 +62415,20 @@ export declare class DefaultFormatting {
|
|
|
62295
62415
|
});
|
|
62296
62416
|
}
|
|
62297
62417
|
|
|
62418
|
+
export declare class DefaultPromptRouter_PromptRouterTargetModel {
|
|
62419
|
+
constructor(props: {
|
|
62420
|
+
/** The target model's ARN. */
|
|
62421
|
+
ModelArn: string;
|
|
62422
|
+
});
|
|
62423
|
+
}
|
|
62424
|
+
|
|
62425
|
+
export declare class DefaultPromptRouter_RoutingCriteria {
|
|
62426
|
+
constructor(props: {
|
|
62427
|
+
/** The response quality difference threshold for routing. */
|
|
62428
|
+
ResponseQualityDifference: number;
|
|
62429
|
+
});
|
|
62430
|
+
}
|
|
62431
|
+
|
|
62298
62432
|
export declare class DefaultPushNotificationTemplate {
|
|
62299
62433
|
constructor(props: {
|
|
62300
62434
|
Action?: string;
|
|
@@ -70554,6 +70688,15 @@ export declare class ExecutiveSummaryOption {
|
|
|
70554
70688
|
});
|
|
70555
70689
|
}
|
|
70556
70690
|
|
|
70691
|
+
export declare class ExistingVersionedProfileSource {
|
|
70692
|
+
constructor(props: {
|
|
70693
|
+
/** The unique identifier of the source profile to clone. */
|
|
70694
|
+
ProfileId: string;
|
|
70695
|
+
/** The version number of the source profile to clone. */
|
|
70696
|
+
Version: number;
|
|
70697
|
+
});
|
|
70698
|
+
}
|
|
70699
|
+
|
|
70557
70700
|
export declare class ExperimentConfig {
|
|
70558
70701
|
constructor(props: {
|
|
70559
70702
|
/** The name of an existing experiment to associate with the trial component. */
|
|
@@ -83546,6 +83689,15 @@ export declare class LambdaFunctionRecipeSource {
|
|
|
83546
83689
|
});
|
|
83547
83690
|
}
|
|
83548
83691
|
|
|
83692
|
+
export declare class LambdaHook_LoggingConfig {
|
|
83693
|
+
constructor(props: {
|
|
83694
|
+
/** The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers. */
|
|
83695
|
+
LogGroupName: string;
|
|
83696
|
+
/** The ARN of the role that CloudFormation should assume when sending log entries to CloudWatch Logs. */
|
|
83697
|
+
LogRoleArn: string;
|
|
83698
|
+
});
|
|
83699
|
+
}
|
|
83700
|
+
|
|
83549
83701
|
export declare class LambdaLinuxProcessParams {
|
|
83550
83702
|
constructor(props: {
|
|
83551
83703
|
ContainerParams?: Record<string, unknown>;
|
|
@@ -87738,6 +87890,8 @@ export declare class MatchingWorkflow_ProviderProperties {
|
|
|
87738
87890
|
|
|
87739
87891
|
export declare class MatchingWorkflow_ResolutionTechniques {
|
|
87740
87892
|
constructor(props: {
|
|
87893
|
+
/** Enables the workflow to use real-time matching. Can only be set on creation for RULE_MATCHING workflows that define RuleConditionProperties. */
|
|
87894
|
+
EnableRealTimeMatching?: boolean;
|
|
87741
87895
|
ProviderProperties?: MatchingWorkflow_ProviderProperties;
|
|
87742
87896
|
ResolutionType?: MatchingWorkflow_ResolutionType;
|
|
87743
87897
|
RuleBasedProperties?: MatchingWorkflow_RuleBasedProperties;
|
|
@@ -96216,6 +96370,15 @@ export declare class OrganizationConformancePack_ConformancePackInputParameter {
|
|
|
96216
96370
|
});
|
|
96217
96371
|
}
|
|
96218
96372
|
|
|
96373
|
+
export declare class OrganizationConformancePack_Tag {
|
|
96374
|
+
constructor(props: {
|
|
96375
|
+
/** The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
96376
|
+
Key: string;
|
|
96377
|
+
/** The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
96378
|
+
Value: string;
|
|
96379
|
+
});
|
|
96380
|
+
}
|
|
96381
|
+
|
|
96219
96382
|
export declare class OrganizationCustomPolicyRuleMetadata {
|
|
96220
96383
|
constructor(props: {
|
|
96221
96384
|
PolicyText: string;
|
|
@@ -100476,6 +100639,13 @@ export declare class ProfileAssociation_Tag {
|
|
|
100476
100639
|
});
|
|
100477
100640
|
}
|
|
100478
100641
|
|
|
100642
|
+
export declare class ProfileMappingSource {
|
|
100643
|
+
constructor(props: {
|
|
100644
|
+
/** Map of template file paths to their Velocity template content. */
|
|
100645
|
+
ProfileMapping: Record<string, unknown>;
|
|
100646
|
+
});
|
|
100647
|
+
}
|
|
100648
|
+
|
|
100479
100649
|
export declare class ProfilingGroup_Channel {
|
|
100480
100650
|
constructor(props: {
|
|
100481
100651
|
channelUri: string;
|
|
@@ -100654,13 +100824,6 @@ export declare class PromptOverrideConfiguration {
|
|
|
100654
100824
|
});
|
|
100655
100825
|
}
|
|
100656
100826
|
|
|
100657
|
-
export declare class PromptRouterTargetModel {
|
|
100658
|
-
constructor(props: {
|
|
100659
|
-
/** Arn of underlying model which are added in the Prompt Router. */
|
|
100660
|
-
ModelArn: string;
|
|
100661
|
-
});
|
|
100662
|
-
}
|
|
100663
|
-
|
|
100664
100827
|
export declare class PromptVersion_PromptVariant {
|
|
100665
100828
|
constructor(props: {
|
|
100666
100829
|
/** Name for a variant. */
|
|
@@ -105764,6 +105927,8 @@ export declare class ResiliencyPolicy_PolicyMap {
|
|
|
105764
105927
|
|
|
105765
105928
|
export declare class ResolutionTechniques {
|
|
105766
105929
|
constructor(props: {
|
|
105930
|
+
/** Enables the workflow to use real-time matching. Can only be set on creation for RULE_MATCHING workflows that define RuleConditionProperties. */
|
|
105931
|
+
EnableRealTimeMatching?: boolean;
|
|
105767
105932
|
ProviderProperties?: MatchingWorkflow_ProviderProperties;
|
|
105768
105933
|
ResolutionType?: MatchingWorkflow_ResolutionType;
|
|
105769
105934
|
RuleBasedProperties?: MatchingWorkflow_RuleBasedProperties;
|
|
@@ -107209,12 +107374,6 @@ export declare class RouteTable_Tag {
|
|
|
107209
107374
|
});
|
|
107210
107375
|
}
|
|
107211
107376
|
|
|
107212
|
-
export declare class RoutingCriteria {
|
|
107213
|
-
constructor(props: {
|
|
107214
|
-
ResponseQualityDifference: number;
|
|
107215
|
-
});
|
|
107216
|
-
}
|
|
107217
|
-
|
|
107218
107377
|
export declare class RoutingProfile_CrossChannelBehavior {
|
|
107219
107378
|
constructor(props: {
|
|
107220
107379
|
BehaviorType: RoutingProfile_BehaviorType;
|
|
@@ -107643,6 +107802,13 @@ export declare class Runtime_AgentRuntimeArtifact {
|
|
|
107643
107802
|
});
|
|
107644
107803
|
}
|
|
107645
107804
|
|
|
107805
|
+
export declare class Runtime_AllowedWorkloadConfiguration {
|
|
107806
|
+
constructor(props: {
|
|
107807
|
+
HostingEnvironments?: any;
|
|
107808
|
+
WorkloadIdentities?: any;
|
|
107809
|
+
});
|
|
107810
|
+
}
|
|
107811
|
+
|
|
107646
107812
|
export declare class Runtime_AuthorizerConfiguration {
|
|
107647
107813
|
constructor(props: {
|
|
107648
107814
|
CustomJWTAuthorizer?: Runtime_CustomJWTAuthorizerConfiguration;
|
|
@@ -107675,7 +107841,10 @@ export declare class Runtime_CustomJWTAuthorizerConfiguration {
|
|
|
107675
107841
|
AllowedAudience?: any;
|
|
107676
107842
|
AllowedClients?: any;
|
|
107677
107843
|
AllowedScopes?: any;
|
|
107844
|
+
AllowedWorkloadConfiguration?: Runtime_AllowedWorkloadConfiguration;
|
|
107678
107845
|
CustomClaims?: any;
|
|
107846
|
+
PrivateEndpoint?: Record<string, unknown>;
|
|
107847
|
+
PrivateEndpointOverrides?: any;
|
|
107679
107848
|
});
|
|
107680
107849
|
}
|
|
107681
107850
|
|
|
@@ -115039,6 +115208,13 @@ export declare class StarburstParameters {
|
|
|
115039
115208
|
});
|
|
115040
115209
|
}
|
|
115041
115210
|
|
|
115211
|
+
export declare class StarterProfileSource {
|
|
115212
|
+
constructor(props: {
|
|
115213
|
+
/** The name of the starter profile to seed the profile from. */
|
|
115214
|
+
StarterProfileName: string;
|
|
115215
|
+
});
|
|
115216
|
+
}
|
|
115217
|
+
|
|
115042
115218
|
export declare class StartTag {
|
|
115043
115219
|
constructor(props: {
|
|
115044
115220
|
/** <p>Specify the value for TIME-OFFSET within your EXT-X-START tag. Enter a signed floating point value which, if positive, must be less than the configured manifest duration minus three times the configured segment target duration. If negative, the absolute value must be larger than three times the configured segment target duration, and the absolute value must be smaller than the configured manifest duration.</p> */
|
|
@@ -120627,6 +120803,7 @@ export declare class UserPoolConfig {
|
|
|
120627
120803
|
export declare class UserPoolDomain_CustomDomainConfigType {
|
|
120628
120804
|
constructor(props: {
|
|
120629
120805
|
CertificateArn?: string;
|
|
120806
|
+
SecurityPolicy?: string;
|
|
120630
120807
|
});
|
|
120631
120808
|
}
|
|
120632
120809
|
|
package/src/generated/index.ts
CHANGED
|
@@ -378,6 +378,7 @@ export const DataSyncAgent = createResource("AWS::DataSync::Agent", "aws", {"Age
|
|
|
378
378
|
export const DataTable = createResource("AWS::Connect::DataTable", "aws", {"Arn":"Arn","LockVersion":"LockVersion","CreatedTime":"CreatedTime","LastModifiedRegion":"LastModifiedRegion","LastModifiedTime":"LastModifiedTime"});
|
|
379
379
|
export const DataTableAttribute = createResource("AWS::Connect::DataTableAttribute", "aws", {"AttributeId":"AttributeId","LockVersion":"LockVersion","LastModifiedRegion":"LastModifiedRegion","LastModifiedTime":"LastModifiedTime"});
|
|
380
380
|
export const DataTableRecord = createResource("AWS::Connect::DataTableRecord", "aws", {"RecordId":"RecordId"});
|
|
381
|
+
export const DataTransformationProfile = createResource("AWS::HealthLake::DataTransformationProfile", "aws", {"Arn":"Arn","ProfileId":"ProfileId","TargetFormat":"TargetFormat"});
|
|
381
382
|
export const DataZoneConnection = createResource("AWS::DataZone::Connection", "aws", {"ConnectionId":"ConnectionId","DomainId":"DomainId","DomainUnitId":"DomainUnitId","EnvironmentId":"EnvironmentId","EnvironmentUserRole":"EnvironmentUserRole","ProjectId":"ProjectId","Type":"Type"});
|
|
382
383
|
export const DataZoneDataSource = createResource("AWS::DataZone::DataSource", "aws", {"ConnectionId":"ConnectionId","CreatedAt":"CreatedAt","DomainId":"DomainId","EnvironmentId":"EnvironmentId","Id":"Id","LastRunAssetCount":"LastRunAssetCount","LastRunAt":"LastRunAt","LastRunStatus":"LastRunStatus","ProjectId":"ProjectId","Status":"Status","UpdatedAt":"UpdatedAt"});
|
|
383
384
|
export const DataZoneDomain = createResource("AWS::DataZone::Domain", "aws", {"RootDomainUnitId":"RootDomainUnitId","Arn":"Arn","CreatedAt":"CreatedAt","Id":"Id","LastUpdatedAt":"LastUpdatedAt","ManagedAccountId":"ManagedAccountId","PortalUrl":"PortalUrl","Status":"Status"});
|
|
@@ -399,6 +400,7 @@ export const DeadlineFleet = createResource("AWS::Deadline::Fleet", "aws", {"Cap
|
|
|
399
400
|
export const DeadlineMonitor = createResource("AWS::Deadline::Monitor", "aws", {"IdentityCenterApplicationArn":"IdentityCenterApplicationArn","MonitorId":"MonitorId","Url":"Url","Arn":"Arn"});
|
|
400
401
|
export const DeadlineQueue = createResource("AWS::Deadline::Queue", "aws", {"QueueId":"QueueId","Arn":"Arn"});
|
|
401
402
|
export const DecoderManifest = createResource("AWS::IoTFleetWise::DecoderManifest", "aws", {"Arn":"Arn","CreationTime":"CreationTime","LastModificationTime":"LastModificationTime"});
|
|
403
|
+
export const DefaultPromptRouter = createResource("AWS::Bedrock::DefaultPromptRouter", "aws", {"PromptRouterArn":"PromptRouterArn","PromptRouterId":"PromptRouterId","PromptRouterName":"PromptRouterName","Description":"Description","RoutingCriteria":"RoutingCriteria","FallbackModel":"FallbackModel","Models":"Models","Status":"Status","Type":"Type","CreatedAt":"CreatedAt","UpdatedAt":"UpdatedAt"});
|
|
402
404
|
export const DefaultViewAssociation = createResource("AWS::ResourceExplorer2::DefaultViewAssociation", "aws", {"AssociatedAwsPrincipal":"AssociatedAwsPrincipal"});
|
|
403
405
|
export const DelegatedAdmin = createResource("AWS::SecurityHub::DelegatedAdmin", "aws", {"DelegatedAdminIdentifier":"DelegatedAdminIdentifier","Status":"Status"});
|
|
404
406
|
export const Delivery = createResource("AWS::Logs::Delivery", "aws", {"DeliveryId":"DeliveryId","Arn":"Arn","DeliveryDestinationType":"DeliveryDestinationType"});
|
|
@@ -1001,7 +1003,7 @@ export const OrganizationalUnitAssociation = createResource("AWS::Notifications:
|
|
|
1001
1003
|
export const OrganizationCentralizationRule = createResource("AWS::ObservabilityAdmin::OrganizationCentralizationRule", "aws", {"RuleArn":"RuleArn"});
|
|
1002
1004
|
export const OrganizationConfigRule = createResource("AWS::Config::OrganizationConfigRule", "aws", {"Id":"Id"});
|
|
1003
1005
|
export const OrganizationConfiguration = createResource("AWS::SecurityHub::OrganizationConfiguration", "aws", {"OrganizationConfigurationIdentifier":"OrganizationConfigurationIdentifier","Status":"Status","StatusMessage":"StatusMessage","MemberAccountLimitReached":"MemberAccountLimitReached"});
|
|
1004
|
-
export const OrganizationConformancePack = createResource("AWS::Config::OrganizationConformancePack", "aws", {});
|
|
1006
|
+
export const OrganizationConformancePack = createResource("AWS::Config::OrganizationConformancePack", "aws", {"OrganizationConformancePackArn":"OrganizationConformancePackArn"});
|
|
1005
1007
|
export const OrganizationsAccount = createResource("AWS::Organizations::Account", "aws", {"AccountId":"AccountId","Status":"Status","State":"State","JoinedTimestamp":"JoinedTimestamp","JoinedMethod":"JoinedMethod","Arn":"Arn","Paths":"Paths"});
|
|
1006
1008
|
export const OrganizationsPolicy = createResource("AWS::Organizations::Policy", "aws", {"Id":"Id","Arn":"Arn","AwsManaged":"AwsManaged"});
|
|
1007
1009
|
export const OrganizationsResourcePolicy = createResource("AWS::Organizations::ResourcePolicy", "aws", {"Id":"Id","Arn":"Arn"});
|
|
@@ -1835,6 +1837,7 @@ export const AliasConfiguration = createProperty("AWS::Connect::EmailAddress.Ali
|
|
|
1835
1837
|
export const AliasRoutingConfiguration = createProperty("AWS::Lambda::Alias.AliasRoutingConfiguration", "aws");
|
|
1836
1838
|
export const AllowedPublishers = createProperty("AWS::Lambda::CodeSigningConfig.AllowedPublishers", "aws");
|
|
1837
1839
|
export const AllowedStatistics = createProperty("AWS::DataBrew::Job.AllowedStatistics", "aws");
|
|
1840
|
+
export const AllowedWorkloadConfiguration = createProperty("AWS::BedrockAgentCore::Runtime.AllowedWorkloadConfiguration", "aws");
|
|
1838
1841
|
export const AllowList_Tag = createProperty("AWS::Macie::AllowList.Tag", "aws");
|
|
1839
1842
|
export const AlternatePathHint = createProperty("AWS::EC2::NetworkInsightsAnalysis.AlternatePathHint", "aws");
|
|
1840
1843
|
export const AmazonElasticsearchParameters = createProperty("AWS::QuickSight::DataSource.AmazonElasticsearchParameters", "aws");
|
|
@@ -3974,6 +3977,11 @@ export const DatastoreStorage = createProperty("AWS::IoTAnalytics::Datastore.Dat
|
|
|
3974
3977
|
export const DataStoriesSharingOption = createProperty("AWS::QuickSight::Dashboard.DataStoriesSharingOption", "aws");
|
|
3975
3978
|
export const DataSyncAgent_Tag = createProperty("AWS::DataSync::Agent.Tag", "aws");
|
|
3976
3979
|
export const DataTable_Tag = createProperty("AWS::Connect::DataTable.Tag", "aws");
|
|
3980
|
+
export const DataTransformationProfile_ExistingVersionedProfileSource = createProperty("AWS::HealthLake::DataTransformationProfile.ExistingVersionedProfileSource", "aws");
|
|
3981
|
+
export const DataTransformationProfile_ProfileMappingSource = createProperty("AWS::HealthLake::DataTransformationProfile.ProfileMappingSource", "aws");
|
|
3982
|
+
export const DataTransformationProfile_Source = createProperty("AWS::HealthLake::DataTransformationProfile.Source", "aws");
|
|
3983
|
+
export const DataTransformationProfile_StarterProfileSource = createProperty("AWS::HealthLake::DataTransformationProfile.StarterProfileSource", "aws");
|
|
3984
|
+
export const DataTransformationProfile_Tag = createProperty("AWS::HealthLake::DataTransformationProfile.Tag", "aws");
|
|
3977
3985
|
export const DataZoneConnection_AwsLocation = createProperty("AWS::DataZone::Connection.AwsLocation", "aws");
|
|
3978
3986
|
export const DataZoneConnection_ConnectionConfiguration = createProperty("AWS::DataZone::Connection.ConnectionConfiguration", "aws");
|
|
3979
3987
|
export const DataZoneDataSource_FormInput = createProperty("AWS::DataZone::DataSource.FormInput", "aws");
|
|
@@ -4035,6 +4043,8 @@ export const DefaultButtonConfiguration = createProperty("AWS::Pinpoint::InAppTe
|
|
|
4035
4043
|
export const DefaultCacheBehavior = createProperty("AWS::CloudFront::Distribution.DefaultCacheBehavior", "aws");
|
|
4036
4044
|
export const DefaultFieldValue = createProperty("AWS::Connect::TaskTemplate.DefaultFieldValue", "aws");
|
|
4037
4045
|
export const DefaultFormatting = createProperty("AWS::QuickSight::Topic.DefaultFormatting", "aws");
|
|
4046
|
+
export const DefaultPromptRouter_PromptRouterTargetModel = createProperty("AWS::Bedrock::DefaultPromptRouter.PromptRouterTargetModel", "aws");
|
|
4047
|
+
export const DefaultPromptRouter_RoutingCriteria = createProperty("AWS::Bedrock::DefaultPromptRouter.RoutingCriteria", "aws");
|
|
4038
4048
|
export const DefaultPushNotificationTemplate = createProperty("AWS::Pinpoint::PushTemplate.DefaultPushNotificationTemplate", "aws");
|
|
4039
4049
|
export const DefaultRetention = createProperty("AWS::S3::Bucket.DefaultRetention", "aws");
|
|
4040
4050
|
export const DefaultRouteInput = createProperty("AWS::RefactorSpaces::Route.DefaultRouteInput", "aws");
|
|
@@ -4886,6 +4896,7 @@ export const ExecutionPlan_CapacityUnitsConfiguration = createProperty("AWS::Ken
|
|
|
4886
4896
|
export const ExecutionProperty = createProperty("AWS::Glue::Job.ExecutionProperty", "aws");
|
|
4887
4897
|
export const ExecutionStatusObject = createProperty("AWS::Evidently::Launch.ExecutionStatusObject", "aws");
|
|
4888
4898
|
export const ExecutiveSummaryOption = createProperty("AWS::QuickSight::Dashboard.ExecutiveSummaryOption", "aws");
|
|
4899
|
+
export const ExistingVersionedProfileSource = createProperty("AWS::HealthLake::DataTransformationProfile.ExistingVersionedProfileSource", "aws");
|
|
4889
4900
|
export const ExperimentConfig = createProperty("AWS::SageMaker::ProcessingJob.ExperimentConfig", "aws");
|
|
4890
4901
|
export const ExperimentTemplate_ExperimentTemplateExperimentOptions = createProperty("AWS::FIS::ExperimentTemplate.ExperimentTemplateExperimentOptions", "aws");
|
|
4891
4902
|
export const ExperimentTemplate_ExperimentTemplateExperimentReportConfiguration = createProperty("AWS::FIS::ExperimentTemplate.ExperimentTemplateExperimentReportConfiguration", "aws");
|
|
@@ -6317,6 +6328,7 @@ export const LambdaEventSource = createProperty("AWS::GreengrassV2::ComponentVer
|
|
|
6317
6328
|
export const LambdaExecutionParameters = createProperty("AWS::GreengrassV2::ComponentVersion.LambdaExecutionParameters", "aws");
|
|
6318
6329
|
export const LambdaFunctionAssociation = createProperty("AWS::CloudFront::Distribution.LambdaFunctionAssociation", "aws");
|
|
6319
6330
|
export const LambdaFunctionRecipeSource = createProperty("AWS::GreengrassV2::ComponentVersion.LambdaFunctionRecipeSource", "aws");
|
|
6331
|
+
export const LambdaHook_LoggingConfig = createProperty("AWS::CloudFormation::LambdaHook.LoggingConfig", "aws");
|
|
6320
6332
|
export const LambdaLinuxProcessParams = createProperty("AWS::GreengrassV2::ComponentVersion.LambdaLinuxProcessParams", "aws");
|
|
6321
6333
|
export const LambdaManagedInstancesCapacityProviderConfig = createProperty("AWS::Lambda::Function.LambdaManagedInstancesCapacityProviderConfig", "aws");
|
|
6322
6334
|
export const LandingZone_Tag = createProperty("AWS::ControlTower::LandingZone.Tag", "aws");
|
|
@@ -7585,6 +7597,7 @@ export const OrganizationConfigRule_OrganizationCustomPolicyRuleMetadata = creat
|
|
|
7585
7597
|
export const OrganizationConfigRule_OrganizationCustomRuleMetadata = createProperty("AWS::Config::OrganizationConfigRule.OrganizationCustomRuleMetadata", "aws");
|
|
7586
7598
|
export const OrganizationConfigRule_OrganizationManagedRuleMetadata = createProperty("AWS::Config::OrganizationConfigRule.OrganizationManagedRuleMetadata", "aws");
|
|
7587
7599
|
export const OrganizationConformancePack_ConformancePackInputParameter = createProperty("AWS::Config::OrganizationConformancePack.ConformancePackInputParameter", "aws");
|
|
7600
|
+
export const OrganizationConformancePack_Tag = createProperty("AWS::Config::OrganizationConformancePack.Tag", "aws");
|
|
7588
7601
|
export const OrganizationCustomPolicyRuleMetadata = createProperty("AWS::Config::OrganizationConfigRule.OrganizationCustomPolicyRuleMetadata", "aws");
|
|
7589
7602
|
export const OrganizationCustomRuleMetadata = createProperty("AWS::Config::OrganizationConfigRule.OrganizationCustomRuleMetadata", "aws");
|
|
7590
7603
|
export const OrganizationManagedRuleMetadata = createProperty("AWS::Config::OrganizationConfigRule.OrganizationManagedRuleMetadata", "aws");
|
|
@@ -8047,6 +8060,7 @@ export const ProcessingResources = createProperty("AWS::SageMaker::ProcessingJob
|
|
|
8047
8060
|
export const ProcessorFeature = createProperty("AWS::RDS::DBInstance.ProcessorFeature", "aws");
|
|
8048
8061
|
export const ProductionVariant = createProperty("AWS::SageMaker::EndpointConfig.ProductionVariant", "aws");
|
|
8049
8062
|
export const ProfileAssociation_Tag = createProperty("AWS::Route53Profiles::ProfileAssociation.Tag", "aws");
|
|
8063
|
+
export const ProfileMappingSource = createProperty("AWS::HealthLake::DataTransformationProfile.ProfileMappingSource", "aws");
|
|
8050
8064
|
export const ProfilingGroup_Channel = createProperty("AWS::CodeGuruProfiler::ProfilingGroup.Channel", "aws");
|
|
8051
8065
|
export const ProfilingGroup_Tag = createProperty("AWS::CodeGuruProfiler::ProfilingGroup.Tag", "aws");
|
|
8052
8066
|
export const ProgressiveDialerConfig = createProperty("AWS::ConnectCampaigns::Campaign.ProgressiveDialerConfig", "aws");
|
|
@@ -8068,7 +8082,6 @@ export const Prometheus = createProperty("AWS::MSK::Cluster.Prometheus", "aws");
|
|
|
8068
8082
|
export const PrometheusMonitoringConfiguration = createProperty("AWS::EMRServerless::Application.PrometheusMonitoringConfiguration", "aws");
|
|
8069
8083
|
export const PromptConfiguration = createProperty("AWS::Bedrock::Agent.PromptConfiguration", "aws");
|
|
8070
8084
|
export const PromptOverrideConfiguration = createProperty("AWS::Bedrock::Agent.PromptOverrideConfiguration", "aws");
|
|
8071
|
-
export const PromptRouterTargetModel = createProperty("AWS::Bedrock::IntelligentPromptRouter.PromptRouterTargetModel", "aws");
|
|
8072
8085
|
export const PromptVersion_PromptVariant = createProperty("AWS::Bedrock::PromptVersion.PromptVariant", "aws");
|
|
8073
8086
|
export const PropagateTagsConfig = createProperty("AWS::Lambda::CapacityProvider.PropagateTagsConfig", "aws");
|
|
8074
8087
|
export const PropertyGroup = createProperty("AWS::KinesisAnalyticsV2::Application.PropertyGroup", "aws");
|
|
@@ -8776,7 +8789,6 @@ export const RouteServerPeer_BgpOptions = createProperty("AWS::EC2::RouteServerP
|
|
|
8776
8789
|
export const RouteServerPeer_Tag = createProperty("AWS::EC2::RouteServerPeer.Tag", "aws");
|
|
8777
8790
|
export const RouteSpec = createProperty("AWS::AppMesh::Route.RouteSpec", "aws");
|
|
8778
8791
|
export const RouteTable_Tag = createProperty("AWS::EC2::RouteTable.Tag", "aws");
|
|
8779
|
-
export const RoutingCriteria = createProperty("AWS::Bedrock::IntelligentPromptRouter.RoutingCriteria", "aws");
|
|
8780
8792
|
export const RoutingProfile_CrossChannelBehavior = createProperty("AWS::Connect::RoutingProfile.CrossChannelBehavior", "aws");
|
|
8781
8793
|
export const RoutingProfile_MediaConcurrency = createProperty("AWS::Connect::RoutingProfile.MediaConcurrency", "aws");
|
|
8782
8794
|
export const RoutingProfile_RoutingProfileManualAssignmentQueueConfig = createProperty("AWS::Connect::RoutingProfile.RoutingProfileManualAssignmentQueueConfig", "aws");
|
|
@@ -8826,6 +8838,7 @@ export const RunConfiguration = createProperty("AWS::KinesisAnalyticsV2::Applica
|
|
|
8826
8838
|
export const RunConfigurations = createProperty("AWS::Omics::Configuration.RunConfigurations", "aws");
|
|
8827
8839
|
export const RunningStatusObject = createProperty("AWS::Evidently::Experiment.RunningStatusObject", "aws");
|
|
8828
8840
|
export const Runtime_AgentRuntimeArtifact = createProperty("AWS::BedrockAgentCore::Runtime.AgentRuntimeArtifact", "aws");
|
|
8841
|
+
export const Runtime_AllowedWorkloadConfiguration = createProperty("AWS::BedrockAgentCore::Runtime.AllowedWorkloadConfiguration", "aws");
|
|
8829
8842
|
export const Runtime_AuthorizerConfiguration = createProperty("AWS::BedrockAgentCore::Runtime.AuthorizerConfiguration", "aws");
|
|
8830
8843
|
export const Runtime_Code = createProperty("AWS::BedrockAgentCore::Runtime.Code", "aws");
|
|
8831
8844
|
export const Runtime_CodeConfiguration = createProperty("AWS::BedrockAgentCore::Runtime.CodeConfiguration", "aws");
|
|
@@ -9571,6 +9584,7 @@ export const Standard_StandardsControl = createProperty("AWS::SecurityHub::Stand
|
|
|
9571
9584
|
export const StandardOutputConfiguration = createProperty("AWS::Bedrock::DataAutomationProject.StandardOutputConfiguration", "aws");
|
|
9572
9585
|
export const StandardsControl = createProperty("AWS::SecurityHub::Standard.StandardsControl", "aws");
|
|
9573
9586
|
export const StarburstParameters = createProperty("AWS::QuickSight::DataSource.StarburstParameters", "aws");
|
|
9587
|
+
export const StarterProfileSource = createProperty("AWS::HealthLake::DataTransformationProfile.StarterProfileSource", "aws");
|
|
9574
9588
|
export const StartTag = createProperty("AWS::MediaPackageV2::OriginEndpoint.StartTag", "aws");
|
|
9575
9589
|
export const StatefulEngineOptions = createProperty("AWS::NetworkFirewall::FirewallPolicy.StatefulEngineOptions", "aws");
|
|
9576
9590
|
export const StatefulRule = createProperty("AWS::NetworkFirewall::RuleGroup.StatefulRule", "aws");
|