@intentius/chant-lexicon-aws 0.38.0 → 0.41.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.
Files changed (89) hide show
  1. package/dist/ambient.d.ts.map +1 -1
  2. package/dist/api/read-client.d.ts.map +1 -1
  3. package/dist/codegen/generate.d.ts.map +1 -1
  4. package/dist/codegen/naming.d.ts +18 -1
  5. package/dist/codegen/naming.d.ts.map +1 -1
  6. package/dist/composites/alb-shared.d.ts +7 -1
  7. package/dist/composites/alb-shared.d.ts.map +1 -1
  8. package/dist/composites/ec2-instance-role.d.ts +4 -1
  9. package/dist/composites/ec2-instance-role.d.ts.map +1 -1
  10. package/dist/composites/efs-with-access-point.d.ts +5 -1
  11. package/dist/composites/efs-with-access-point.d.ts.map +1 -1
  12. package/dist/composites/fargate-alb.d.ts +14 -1
  13. package/dist/composites/fargate-alb.d.ts.map +1 -1
  14. package/dist/composites/fargate-service.d.ts +19 -8
  15. package/dist/composites/fargate-service.d.ts.map +1 -1
  16. package/dist/composites/index.d.ts +2 -2
  17. package/dist/composites/index.d.ts.map +1 -1
  18. package/dist/composites/lambda-api.d.ts +3 -1
  19. package/dist/composites/lambda-api.d.ts.map +1 -1
  20. package/dist/composites/lambda-dynamodb.d.ts +9 -2
  21. package/dist/composites/lambda-dynamodb.d.ts.map +1 -1
  22. package/dist/composites/lambda-eventbridge.d.ts +9 -2
  23. package/dist/composites/lambda-eventbridge.d.ts.map +1 -1
  24. package/dist/composites/lambda-s3.d.ts +3 -1
  25. package/dist/composites/lambda-s3.d.ts.map +1 -1
  26. package/dist/composites/lambda-sns.d.ts +10 -2
  27. package/dist/composites/lambda-sns.d.ts.map +1 -1
  28. package/dist/composites/lambda-sqs.d.ts +9 -2
  29. package/dist/composites/lambda-sqs.d.ts.map +1 -1
  30. package/dist/composites/microvm-app.d.ts +25 -4
  31. package/dist/composites/microvm-app.d.ts.map +1 -1
  32. package/dist/composites/minimal-vpc.d.ts +10 -1
  33. package/dist/composites/minimal-vpc.d.ts.map +1 -1
  34. package/dist/composites/rds-instance.d.ts +1 -1
  35. package/dist/composites/rds-instance.d.ts.map +1 -1
  36. package/dist/composites/scheduled-lambda.d.ts +15 -3
  37. package/dist/composites/scheduled-lambda.d.ts.map +1 -1
  38. package/dist/composites/solr-fargate-service.d.ts +27 -1
  39. package/dist/composites/solr-fargate-service.d.ts.map +1 -1
  40. package/dist/generated/index.d.ts +63 -49
  41. package/dist/generated/index.d.ts.map +1 -1
  42. package/dist/import/generator.d.ts.map +1 -1
  43. package/dist/index.d.ts +2 -2
  44. package/dist/index.d.ts.map +1 -1
  45. package/dist/integrity.json +4 -4
  46. package/dist/manifest.json +1 -1
  47. package/dist/meta.json +560 -448
  48. package/dist/reference-catalog.d.ts.map +1 -1
  49. package/dist/spec/pin.d.ts +116 -0
  50. package/dist/spec/pin.d.ts.map +1 -0
  51. package/dist/spec/pinned-types.json +1653 -0
  52. package/dist/types/index.d.ts +771 -555
  53. package/dist/validate.d.ts.map +1 -1
  54. package/package.json +2 -2
  55. package/src/ambient.test.ts +21 -0
  56. package/src/ambient.ts +16 -0
  57. package/src/api/read-client.test.ts +31 -0
  58. package/src/api/read-client.ts +43 -1
  59. package/src/codegen/generate.ts +17 -3
  60. package/src/codegen/naming.ts +31 -2
  61. package/src/composites/alb-shared.ts +1 -1
  62. package/src/composites/ec2-instance-role.ts +1 -1
  63. package/src/composites/efs-with-access-point.ts +1 -1
  64. package/src/composites/fargate-alb.ts +1 -1
  65. package/src/composites/fargate-service.ts +15 -10
  66. package/src/composites/index.ts +2 -2
  67. package/src/composites/lambda-api.ts +3 -2
  68. package/src/composites/lambda-dynamodb.ts +4 -3
  69. package/src/composites/lambda-eventbridge.ts +4 -3
  70. package/src/composites/lambda-s3.ts +3 -2
  71. package/src/composites/lambda-sns.ts +4 -3
  72. package/src/composites/lambda-sqs.ts +4 -3
  73. package/src/composites/microvm-app.test.ts +39 -1
  74. package/src/composites/microvm-app.ts +32 -11
  75. package/src/composites/minimal-vpc.ts +1 -1
  76. package/src/composites/rds-instance.ts +1 -1
  77. package/src/composites/scheduled-lambda.ts +4 -3
  78. package/src/composites/solr-fargate-service.ts +7 -1
  79. package/src/generated/index.d.ts +771 -555
  80. package/src/generated/index.ts +65 -51
  81. package/src/generated/lexicon-aws.json +560 -448
  82. package/src/import/generator.ts +5 -4
  83. package/src/index.ts +2 -2
  84. package/src/reference-catalog.test.ts +28 -0
  85. package/src/reference-catalog.ts +7 -0
  86. package/src/spec/pin.test.ts +263 -0
  87. package/src/spec/pin.ts +254 -0
  88. package/src/spec/pinned-types.json +1653 -0
  89. package/src/validate.ts +5 -0
@@ -3421,6 +3421,16 @@ export declare class BCMDashboard {
3421
3421
  readonly UpdatedAt: string;
3422
3422
  }
3423
3423
 
3424
+ export declare class BCMDataExportsExport {
3425
+ constructor(props: {
3426
+ Export: BCMDataExportsExport_Export;
3427
+ ExportArn?: string;
3428
+ Tags?: BCMDataExportsExport_ResourceTag[];
3429
+ }, attributes?: CFResourceAttributes);
3430
+ readonly Export_ExportArn: string;
3431
+ readonly ExportArn: string;
3432
+ }
3433
+
3424
3434
  export declare class BedrockAgent {
3425
3435
  constructor(props: {
3426
3436
  /** Name for a resource. */
@@ -3873,7 +3883,11 @@ export declare class Bot {
3873
3883
  AutoBuildBotLocales?: boolean;
3874
3884
  BotFileS3Location?: Bot_S3Location;
3875
3885
  BotLocales?: Bot_BotLocale[];
3886
+ /** The list of bot members in a network to be created. */
3887
+ BotMembers?: Bot_BotMember[];
3876
3888
  BotTags?: Bot_Tag[];
3889
+ /** The type of a bot to create. */
3890
+ BotType?: "Bot" | "BotNetwork";
3877
3891
  Description?: string;
3878
3892
  ErrorLogSettings?: Record<string, unknown>;
3879
3893
  Id?: string;
@@ -4411,8 +4425,12 @@ export declare class Canary {
4411
4425
  FailureRetentionPeriod?: number;
4412
4426
  /** Id of the canary */
4413
4427
  Id?: string;
4428
+ /** KMS key ARN for encrypting the canary's Lambda function environment variables at rest. If omitted, Lambda uses an AWS-managed key. */
4429
+ KmsKeyArn?: string;
4414
4430
  /** Setting to control if provisioned resources created by Synthetics are deleted alongside the canary. Default is AUTOMATIC. */
4415
4431
  ProvisionedResourceCleanup?: "AUTOMATIC" | "OFF";
4432
+ /** List of replica locations for multi-location canary execution */
4433
+ Replicas?: Canary_Replica[];
4416
4434
  /** List of resources which canary tags should be replicated to. */
4417
4435
  ResourcesToReplicateTags?: Canary_ResourceToTag[];
4418
4436
  /** Provide canary run configuration */
@@ -4433,6 +4451,10 @@ export declare class Canary {
4433
4451
  }, attributes?: CFResourceAttributes);
4434
4452
  readonly Code_SourceLocationArn: string;
4435
4453
  readonly Id: string;
4454
+ readonly Replicas_Item_CanaryState: string;
4455
+ readonly Replicas_Item_LastModified: string;
4456
+ readonly Replicas_Item_ReplicationStatus: string;
4457
+ readonly Replicas_Item_VpcConfig_VpcId: string;
4436
4458
  readonly State: string;
4437
4459
  }
4438
4460
 
@@ -4793,6 +4815,28 @@ export declare class Challenge {
4793
4815
  readonly ChallengeArn: string;
4794
4816
  }
4795
4817
 
4818
+ export declare class Channel {
4819
+ constructor(props: {
4820
+ ChannelName: string;
4821
+ /** Topic configuration */
4822
+ TopicConfigurationList: Channel_TopicConfiguration[];
4823
+ /** The Amazon Resource Name (ARN) that uniquely identifies the channel */
4824
+ ChannelArn?: string;
4825
+ /** The Amazon Resource Name (ARN) of the cluster */
4826
+ ClusterArn?: string;
4827
+ EncryptionConfiguration?: Channel_EncryptionConfiguration;
4828
+ IcebergDestinationConfiguration?: Channel_IcebergDestinationConfiguration;
4829
+ LoggingInfo?: Channel_ChannelLoggingInfo;
4830
+ S3DestinationConfiguration?: Channel_S3DestinationConfiguration;
4831
+ StateInfo?: Channel_ChannelStateInfo;
4832
+ Status?: Channel_ChannelStatus;
4833
+ Tags?: Record<string, unknown>;
4834
+ }, attributes?: CFResourceAttributes);
4835
+ readonly ChannelArn: string;
4836
+ readonly StateInfo: Channel_ChannelStateInfo;
4837
+ readonly Status: Channel_ChannelStatus;
4838
+ }
4839
+
4796
4840
  export declare class ChannelAssociation {
4797
4841
  constructor(props: {
4798
4842
  /** ARN identifier of the channel.
@@ -8299,6 +8343,17 @@ export declare class DataBrewProject {
8299
8343
  }, attributes?: CFResourceAttributes);
8300
8344
  }
8301
8345
 
8346
+ export declare class DataBrewRecipe {
8347
+ constructor(props: {
8348
+ /** Recipe name */
8349
+ Name: string;
8350
+ Steps: DataBrewRecipe_RecipeStep[];
8351
+ /** Description of the recipe */
8352
+ Description?: string;
8353
+ Tags?: DataBrewRecipe_Tag[];
8354
+ }, attributes?: CFResourceAttributes);
8355
+ }
8356
+
8302
8357
  export declare class DataBrewSchedule {
8303
8358
  constructor(props: {
8304
8359
  /** Schedule cron */
@@ -12415,6 +12470,7 @@ export declare class EgressOnlyInternetGateway {
12415
12470
 
12416
12471
  export declare class EIP {
12417
12472
  constructor(props: {
12473
+ /** An Elastic IP address or a carrier IP address in a Wavelength Zone. */
12418
12474
  Address?: string;
12419
12475
  AllocationId?: string;
12420
12476
  /** The network (``vpc``).
@@ -12423,6 +12479,7 @@ export declare class EIP {
12423
12479
  /** The ID of the instance.
12424
12480
  Updates to the ``InstanceId`` property may require *some interruptions*. Updates on an EIP reassociates the address on its associated resource. */
12425
12481
  InstanceId?: string;
12482
+ /** 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*. */
12426
12483
  IpamPoolId?: string;
12427
12484
  /** 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.
12428
12485
  Use [DescribeAvailabilityZones](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAvailabilityZones.html) to view the network border groups. */
@@ -14060,16 +14117,6 @@ export declare class ExperimentTrialComponent {
14060
14117
  readonly LineageGroupArn: string;
14061
14118
  }
14062
14119
 
14063
- export declare class Export {
14064
- constructor(props: {
14065
- Export: Export_Export;
14066
- ExportArn?: string;
14067
- Tags?: Export_ResourceTag[];
14068
- }, attributes?: CFResourceAttributes);
14069
- readonly Export_ExportArn: string;
14070
- readonly ExportArn: string;
14071
- }
14072
-
14073
14120
  export declare class ExpressGatewayService {
14074
14121
  constructor(props: {
14075
14122
  InfrastructureRoleArn: string;
@@ -21369,6 +21416,24 @@ export declare class M2Environment {
21369
21416
  readonly EnvironmentId: string;
21370
21417
  }
21371
21418
 
21419
+ export declare class MacieSession {
21420
+ constructor(props: {
21421
+ /** The status of automated sensitive data discovery for the Macie session. */
21422
+ AutomatedDiscoveryStatus?: "DISABLED" | "ENABLED";
21423
+ /** AWS account ID of customer */
21424
+ AwsAccountId?: string;
21425
+ /** A enumeration value that specifies how frequently finding updates are published. */
21426
+ FindingPublishingFrequency?: "FIFTEEN_MINUTES" | "ONE_HOUR" | "SIX_HOURS";
21427
+ /** Service role used by Macie */
21428
+ ServiceRole?: string;
21429
+ /** A enumeration value that specifies the status of the Macie Session. */
21430
+ Status?: "ENABLED" | "PAUSED";
21431
+ }, attributes?: CFResourceAttributes);
21432
+ readonly AutomatedDiscoveryStatus: "DISABLED" | "ENABLED";
21433
+ readonly AwsAccountId: string;
21434
+ readonly ServiceRole: string;
21435
+ }
21436
+
21372
21437
  export declare class Macro {
21373
21438
  constructor(props: {
21374
21439
  FunctionName: string;
@@ -22135,6 +22200,7 @@ export declare class MediaPackageV2Channel {
22135
22200
  /** <p>The date and time the channel was modified.</p> */
22136
22201
  ModifiedAt?: string;
22137
22202
  OutputHeaderConfiguration?: MediaPackageV2Channel_OutputHeaderConfiguration;
22203
+ OutputLockingMode?: MediaPackageV2Channel_OutputLockingMode;
22138
22204
  Tags?: MediaPackageV2Channel_Tag[];
22139
22205
  }, attributes?: CFResourceAttributes);
22140
22206
  readonly Arn: string;
@@ -23155,28 +23221,6 @@ export declare class MPAIdentitySource {
23155
23221
  readonly StatusMessage: string;
23156
23222
  }
23157
23223
 
23158
- export declare class MSKChannel {
23159
- constructor(props: {
23160
- ChannelName: string;
23161
- /** Topic configuration */
23162
- TopicConfigurationList: MSKChannel_TopicConfiguration[];
23163
- /** The Amazon Resource Name (ARN) that uniquely identifies the channel */
23164
- ChannelArn?: string;
23165
- /** The Amazon Resource Name (ARN) of the cluster */
23166
- ClusterArn?: string;
23167
- EncryptionConfiguration?: MSKChannel_EncryptionConfiguration;
23168
- IcebergDestinationConfiguration?: MSKChannel_IcebergDestinationConfiguration;
23169
- LoggingInfo?: MSKChannel_ChannelLoggingInfo;
23170
- S3DestinationConfiguration?: MSKChannel_S3DestinationConfiguration;
23171
- StateInfo?: MSKChannel_ChannelStateInfo;
23172
- Status?: MSKChannel_ChannelStatus;
23173
- Tags?: Record<string, unknown>;
23174
- }, attributes?: CFResourceAttributes);
23175
- readonly ChannelArn: string;
23176
- readonly StateInfo: MSKChannel_ChannelStateInfo;
23177
- readonly Status: MSKChannel_ChannelStatus;
23178
- }
23179
-
23180
23224
  export declare class MSKCluster {
23181
23225
  constructor(props: {
23182
23226
  BrokerNodeGroupInfo: MSKCluster_BrokerNodeGroupInfo;
@@ -25439,28 +25483,6 @@ export declare class Owner {
25439
25483
  readonly OwnerType: "GROUP" | "USER";
25440
25484
  }
25441
25485
 
25442
- export declare class Package {
25443
- constructor(props: {
25444
- /** A name for the package. */
25445
- PackageName: string;
25446
- Arn?: string;
25447
- CreatedTime?: number;
25448
- PackageId?: string;
25449
- /** A storage location. */
25450
- StorageLocation?: Package_StorageLocation;
25451
- /** Tags for the package. */
25452
- Tags?: any;
25453
- }, attributes?: CFResourceAttributes);
25454
- readonly Arn: string;
25455
- readonly CreatedTime: number;
25456
- readonly PackageId: string;
25457
- readonly StorageLocation_BinaryPrefixLocation: string;
25458
- readonly StorageLocation_Bucket: string;
25459
- readonly StorageLocation_GeneratedPrefixLocation: string;
25460
- readonly StorageLocation_ManifestPrefixLocation: string;
25461
- readonly StorageLocation_RepoPrefixLocation: string;
25462
- }
25463
-
25464
25486
  export declare class PackageGroup {
25465
25487
  constructor(props: {
25466
25488
  /** The name of the domain that contains the package group. */
@@ -25553,6 +25575,28 @@ export declare class PackagingGroup {
25553
25575
  readonly DomainName: string;
25554
25576
  }
25555
25577
 
25578
+ export declare class PanoramaPackage {
25579
+ constructor(props: {
25580
+ /** A name for the package. */
25581
+ PackageName: string;
25582
+ Arn?: string;
25583
+ CreatedTime?: number;
25584
+ PackageId?: string;
25585
+ /** A storage location. */
25586
+ StorageLocation?: PanoramaPackage_StorageLocation;
25587
+ /** Tags for the package. */
25588
+ Tags?: any;
25589
+ }, attributes?: CFResourceAttributes);
25590
+ readonly Arn: string;
25591
+ readonly CreatedTime: number;
25592
+ readonly PackageId: string;
25593
+ readonly StorageLocation_BinaryPrefixLocation: string;
25594
+ readonly StorageLocation_Bucket: string;
25595
+ readonly StorageLocation_GeneratedPrefixLocation: string;
25596
+ readonly StorageLocation_ManifestPrefixLocation: string;
25597
+ readonly StorageLocation_RepoPrefixLocation: string;
25598
+ }
25599
+
25556
25600
  export declare class Partition {
25557
25601
  constructor(props: {
25558
25602
  CatalogId: string;
@@ -26198,6 +26242,10 @@ export declare class PlaybackConfiguration {
26198
26242
  VideoContentSourceUrl: string;
26199
26243
  AdConditioningConfiguration?: PlaybackConfiguration_AdConditioningConfiguration;
26200
26244
  AdDecisionServerConfiguration?: PlaybackConfiguration_AdDecisionServerConfiguration;
26245
+ /** The settings that control how many concurrent requests MediaTailor makes to the ad decision server (ADS). */
26246
+ AdsPersonalizationConcurrency?: PlaybackConfiguration_AdsPersonalizationConcurrency;
26247
+ /** The ad decision server (ADS) request timeouts and personalization time budgets for live, VOD, and prefetch workflows. */
26248
+ AdsPersonalizationTimeouts?: PlaybackConfiguration_AdsPersonalizationTimeouts;
26201
26249
  /** The configuration for avail suppression, also known as ad suppression. For more information about ad suppression, see Ad Suppression (https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html). */
26202
26250
  AvailSuppression?: PlaybackConfiguration_AvailSuppression;
26203
26251
  /** The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see Bumpers (https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html). */
@@ -26643,16 +26691,19 @@ export declare class PreparedStatement {
26643
26691
 
26644
26692
  export declare class Preset {
26645
26693
  constructor(props: {
26694
+ /** Specify, in JSON format, the transcoding job settings for this output preset. This specification must conform to the AWS Elemental MediaConvert job validation. For information about forming this specification, see the Remarks section later in this topic. */
26646
26695
  SettingsJson: Record<string, unknown>;
26696
+ /** The Amazon Resource Name (ARN) of the output preset, such as arn:aws:mediaconvert:us-west-2:123456789012 */
26647
26697
  Arn?: string;
26698
+ /** The new category for the preset, if you are changing it. */
26648
26699
  Category?: string;
26700
+ /** The new description for the preset, if you are changing it. */
26649
26701
  Description?: string;
26650
- Id?: string;
26702
+ /** The name of the preset that you are modifying. */
26651
26703
  Name?: string;
26652
26704
  Tags?: Record<string, unknown>;
26653
26705
  }, attributes?: CFResourceAttributes);
26654
26706
  readonly Arn: string;
26655
- readonly Id: string;
26656
26707
  }
26657
26708
 
26658
26709
  export declare class PricingPlan {
@@ -28223,17 +28274,6 @@ export declare class ReceiptRuleSet {
28223
28274
  readonly Id: string;
28224
28275
  }
28225
28276
 
28226
- export declare class Recipe {
28227
- constructor(props: {
28228
- /** Recipe name */
28229
- Name: string;
28230
- Steps: Recipe_RecipeStep[];
28231
- /** Description of the recipe */
28232
- Description?: string;
28233
- Tags?: Recipe_Tag[];
28234
- }, attributes?: CFResourceAttributes);
28235
- }
28236
-
28237
28277
  export declare class Recommender {
28238
28278
  constructor(props: {
28239
28279
  DomainName: string;
@@ -31490,27 +31530,6 @@ export declare class SageMakerProject {
31490
31530
  readonly ProjectStatus: "CreateCompleted" | "CreateFailed" | "CreateInProgress" | "DeleteCompleted" | "DeleteFailed" | "DeleteInProgress" | "Pending";
31491
31531
  }
31492
31532
 
31493
- export declare class SageMakerSpace {
31494
- constructor(props: {
31495
- /** The ID of the associated Domain. */
31496
- DomainId: string;
31497
- /** A name for the Space. */
31498
- SpaceName: string;
31499
- OwnershipSettings?: SageMakerSpace_OwnershipSettings;
31500
- /** The space Amazon Resource Name (ARN). */
31501
- SpaceArn?: string;
31502
- SpaceDisplayName?: string;
31503
- /** A collection of settings. */
31504
- SpaceSettings?: SageMakerSpace_SpaceSettings;
31505
- SpaceSharingSettings?: SageMakerSpace_SpaceSharingSettings;
31506
- /** A list of tags to apply to the space. */
31507
- Tags?: SageMakerSpace_Tag[];
31508
- Url?: string;
31509
- }, attributes?: CFResourceAttributes);
31510
- readonly SpaceArn: string;
31511
- readonly Url: string;
31512
- }
31513
-
31514
31533
  export declare class SageMakerUserProfile {
31515
31534
  constructor(props: {
31516
31535
  /** The ID of the associated Domain. */
@@ -32970,24 +32989,6 @@ export declare class SESDedicatedIpPool {
32970
32989
  }, attributes?: CFResourceAttributes);
32971
32990
  }
32972
32991
 
32973
- export declare class Session {
32974
- constructor(props: {
32975
- /** The status of automated sensitive data discovery for the Macie session. */
32976
- AutomatedDiscoveryStatus?: "DISABLED" | "ENABLED";
32977
- /** AWS account ID of customer */
32978
- AwsAccountId?: string;
32979
- /** A enumeration value that specifies how frequently finding updates are published. */
32980
- FindingPublishingFrequency?: "FIFTEEN_MINUTES" | "ONE_HOUR" | "SIX_HOURS";
32981
- /** Service role used by Macie */
32982
- ServiceRole?: string;
32983
- /** A enumeration value that specifies the status of the Macie Session. */
32984
- Status?: "ENABLED" | "PAUSED";
32985
- }, attributes?: CFResourceAttributes);
32986
- readonly AutomatedDiscoveryStatus: "DISABLED" | "ENABLED";
32987
- readonly AwsAccountId: string;
32988
- readonly ServiceRole: string;
32989
- }
32990
-
32991
32992
  export declare class SessionLogger {
32992
32993
  constructor(props: {
32993
32994
  EventFilter: any;
@@ -33422,6 +33423,25 @@ export declare class SnapshotBlockPublicAccess {
33422
33423
  readonly AccountId: string;
33423
33424
  }
33424
33425
 
33426
+ export declare class SnapshotSchedule {
33427
+ constructor(props: {
33428
+ /** The definition of the snapshot schedule. The definition is made up of schedule expressions, for example "cron(30 12 *)" or "rate(12 hours)". */
33429
+ ScheduleDefinitions: string[];
33430
+ /** A unique identifier for the snapshot schedule. Only alphanumeric characters are allowed. */
33431
+ ScheduleIdentifier: string;
33432
+ /** The Amazon Resource Name (ARN) of the snapshot schedule. */
33433
+ Arn?: string;
33434
+ /** The number of clusters associated with the schedule. */
33435
+ AssociatedClusterCount?: number;
33436
+ /** The description of the snapshot schedule. */
33437
+ ScheduleDescription?: string;
33438
+ /** An optional set of tags for the snapshot schedule. */
33439
+ Tags?: SnapshotSchedule_Tag[];
33440
+ }, attributes?: CFResourceAttributes);
33441
+ readonly Arn: string;
33442
+ readonly AssociatedClusterCount: number;
33443
+ }
33444
+
33425
33445
  export declare class SoftwarePackage {
33426
33446
  constructor(props: {
33427
33447
  Description?: string;
@@ -33543,6 +33563,27 @@ export declare class SourceLocation {
33543
33563
  readonly Arn: string;
33544
33564
  }
33545
33565
 
33566
+ export declare class Space {
33567
+ constructor(props: {
33568
+ /** The ID of the associated Domain. */
33569
+ DomainId: string;
33570
+ /** A name for the Space. */
33571
+ SpaceName: string;
33572
+ OwnershipSettings?: Space_OwnershipSettings;
33573
+ /** The space Amazon Resource Name (ARN). */
33574
+ SpaceArn?: string;
33575
+ SpaceDisplayName?: string;
33576
+ /** A collection of settings. */
33577
+ SpaceSettings?: Space_SpaceSettings;
33578
+ SpaceSharingSettings?: Space_SpaceSharingSettings;
33579
+ /** A list of tags to apply to the space. */
33580
+ Tags?: Space_Tag[];
33581
+ Url?: string;
33582
+ }, attributes?: CFResourceAttributes);
33583
+ readonly SpaceArn: string;
33584
+ readonly Url: string;
33585
+ }
33586
+
33546
33587
  export declare class SpendingLimit {
33547
33588
  constructor(props: {
33548
33589
  /** The Amazon Resource Name (ARN) of the quantum device to apply the spending limit to. */
@@ -40059,6 +40100,30 @@ export declare class AdsInteractionLog {
40059
40100
  });
40060
40101
  }
40061
40102
 
40103
+ export declare class AdsPersonalizationConcurrency {
40104
+ constructor(props: {
40105
+ /** Enables parallel processing of ADS requests in VOD workflows when the ADS returns VAST responses. The default is false. */
40106
+ EnableVodVastParallelization?: boolean;
40107
+ /** The maximum number of simultaneous requests that MediaTailor makes to the ADS for each manifest request. The default is 1. */
40108
+ MaxConcurrentAdsRequests?: number;
40109
+ });
40110
+ }
40111
+
40112
+ export declare class AdsPersonalizationTimeouts {
40113
+ constructor(props: {
40114
+ /** The maximum time, in milliseconds, that MediaTailor waits for a single ADS response during live or VOD playback. The default is 3000. */
40115
+ AdsRequestTimeoutMilliseconds?: number;
40116
+ /** The maximum total time, in milliseconds, that MediaTailor spends on ADS activity for live manifests. The default is 10000. */
40117
+ LiveMaximumAdsPersonalizationTimeMilliseconds?: number;
40118
+ /** The maximum time, in milliseconds, that MediaTailor waits for a single ADS response during prefetch retrieval. If not set, MediaTailor uses the AdsRequestTimeoutMilliseconds value. */
40119
+ PrefetchAdsRequestTimeoutMilliseconds?: number;
40120
+ /** The maximum total time, in milliseconds, that MediaTailor spends on ADS activity during prefetch retrieval. */
40121
+ PrefetchMaximumAdsPersonalizationTimeMilliseconds?: number;
40122
+ /** The maximum total time, in milliseconds, that MediaTailor spends on ADS activity for VOD manifests. The default is 10000. */
40123
+ VodMaximumAdsPersonalizationTimeMilliseconds?: number;
40124
+ });
40125
+ }
40126
+
40062
40127
  export declare class AdvancedBackupSettingResourceType {
40063
40128
  constructor(props: {
40064
40129
  BackupOptions: Record<string, unknown>;
@@ -47116,6 +47181,53 @@ export declare class BCMDashboard_WidgetConfig {
47116
47181
  });
47117
47182
  }
47118
47183
 
47184
+ export declare class BCMDataExportsExport_DataQuery {
47185
+ constructor(props: {
47186
+ QueryStatement: string;
47187
+ TableConfigurations?: Record<string, unknown>;
47188
+ });
47189
+ }
47190
+
47191
+ export declare class BCMDataExportsExport_DestinationConfigurations {
47192
+ constructor(props: {
47193
+ S3Destination: BCMDataExportsExport_S3Destination;
47194
+ });
47195
+ }
47196
+
47197
+ export declare class BCMDataExportsExport_Export {
47198
+ constructor(props: {
47199
+ DataQuery: BCMDataExportsExport_DataQuery;
47200
+ DestinationConfigurations: BCMDataExportsExport_DestinationConfigurations;
47201
+ Name: string;
47202
+ RefreshCadence: BCMDataExportsExport_RefreshCadence;
47203
+ Description?: string;
47204
+ ExportArn?: string;
47205
+ });
47206
+ }
47207
+
47208
+ export declare class BCMDataExportsExport_RefreshCadence {
47209
+ constructor(props: {
47210
+ Frequency: BCMDataExportsExport_FrequencyOption;
47211
+ });
47212
+ }
47213
+
47214
+ export declare class BCMDataExportsExport_ResourceTag {
47215
+ constructor(props: {
47216
+ Key: string;
47217
+ Value: string;
47218
+ });
47219
+ }
47220
+
47221
+ export declare class BCMDataExportsExport_S3Destination {
47222
+ constructor(props: {
47223
+ S3Bucket: string;
47224
+ S3OutputConfigurations: Record<string, unknown>;
47225
+ S3Prefix: string;
47226
+ S3Region: string;
47227
+ S3BucketOwner?: string;
47228
+ });
47229
+ }
47230
+
47119
47231
  export declare class BedrockAgent_AgentActionGroup {
47120
47232
  constructor(props: {
47121
47233
  /** Name of the action group */
@@ -48227,6 +48339,21 @@ export declare class Bot_BotLocale {
48227
48339
  });
48228
48340
  }
48229
48341
 
48342
+ export declare class Bot_BotMember {
48343
+ constructor(props: {
48344
+ /** The alias ID of a bot that is a member of this network of bots. */
48345
+ BotMemberAliasId: string;
48346
+ /** The alias name of a bot that is a member of this network of bots. */
48347
+ BotMemberAliasName: string;
48348
+ /** The unique ID of a bot that is a member of this network of bots. */
48349
+ BotMemberId: string;
48350
+ /** The unique name of a bot that is a member of this network of bots. */
48351
+ BotMemberName: string;
48352
+ /** The version of a bot that is a member of this network of bots. */
48353
+ BotMemberVersion: string;
48354
+ });
48355
+ }
48356
+
48230
48357
  export declare class Bot_CompositeSlotTypeSetting {
48231
48358
  constructor(props: {
48232
48359
  SubSlots?: Record<string, unknown>[];
@@ -48476,6 +48603,21 @@ export declare class BotLocale {
48476
48603
  });
48477
48604
  }
48478
48605
 
48606
+ export declare class BotMember {
48607
+ constructor(props: {
48608
+ /** The alias ID of a bot that is a member of this network of bots. */
48609
+ BotMemberAliasId: string;
48610
+ /** The alias name of a bot that is a member of this network of bots. */
48611
+ BotMemberAliasName: string;
48612
+ /** The unique ID of a bot that is a member of this network of bots. */
48613
+ BotMemberId: string;
48614
+ /** The unique name of a bot that is a member of this network of bots. */
48615
+ BotMemberName: string;
48616
+ /** The version of a bot that is a member of this network of bots. */
48617
+ BotMemberVersion: string;
48618
+ });
48619
+ }
48620
+
48479
48621
  export declare class BounceAction {
48480
48622
  constructor(props: {
48481
48623
  Message: string;
@@ -50238,6 +50380,34 @@ export declare class Canary_Dependency {
50238
50380
  });
50239
50381
  }
50240
50382
 
50383
+ export declare class Canary_Replica {
50384
+ constructor(props: {
50385
+ /** AWS region for the replica (e.g., us-east-1) */
50386
+ Location: string;
50387
+ /** State of the replica canary (CREATING, READY, RUNNING, etc.) */
50388
+ CanaryState?: string;
50389
+ /** ARN of the KMS key used to encrypt the replica canary's Lambda function environment variables */
50390
+ KmsKeyArn?: string;
50391
+ /** Last modified timestamp of the replica */
50392
+ LastModified?: number;
50393
+ /** Replication status for this replica */
50394
+ ReplicationStatus?: Canary_ReplicaReplicationStatus;
50395
+ /** Resources to replicate tags to for this replica (e.g., lambda-function) */
50396
+ ResourcesToReplicateTags?: Canary_ResourceToTag[];
50397
+ /** Tags to apply to this replica canary and optionally its Lambda function */
50398
+ Tags?: Canary_Tag[];
50399
+ /** VPC configuration for this replica location */
50400
+ VpcConfig?: Canary_VPCConfig;
50401
+ });
50402
+ }
50403
+
50404
+ export declare class Canary_ReplicaReplicationStatus {
50405
+ constructor(props: {
50406
+ /** Replication state: InProgress, InSync, or Inconsistent */
50407
+ State?: string;
50408
+ });
50409
+ }
50410
+
50241
50411
  export declare class Canary_RetryConfig {
50242
50412
  constructor(props: {
50243
50413
  /** maximum times the canary will be retried upon the scheduled run failure */
@@ -52014,6 +52184,177 @@ export declare class CfTrustStore_Tag {
52014
52184
  });
52015
52185
  }
52016
52186
 
52187
+ export declare class Channel_Catalog {
52188
+ constructor(props: {
52189
+ /** The ARN of the catalog */
52190
+ CatalogArn?: string;
52191
+ /** The warehouse location */
52192
+ WarehouseLocation?: string;
52193
+ });
52194
+ }
52195
+
52196
+ export declare class Channel_ChannelLoggingInfo {
52197
+ constructor(props: {
52198
+ CloudWatchLogs?: Channel_CloudWatchLogsLogDestination;
52199
+ Firehose?: Channel_FirehoseLogDestination;
52200
+ S3?: Channel_S3LogDestination;
52201
+ });
52202
+ }
52203
+
52204
+ export declare class Channel_ChannelStateInfo {
52205
+ constructor(props: {
52206
+ /** Code for channel state */
52207
+ Code?: string;
52208
+ /** Message for channel state */
52209
+ Message?: string;
52210
+ });
52211
+ }
52212
+
52213
+ export declare class Channel_CloudWatchLogsLogDestination {
52214
+ constructor(props: {
52215
+ /** Whether CloudWatch Logs logging is enabled */
52216
+ Enabled: boolean;
52217
+ /** The CloudWatch log group for log delivery */
52218
+ LogGroup?: string;
52219
+ });
52220
+ }
52221
+
52222
+ export declare class Channel_DeadLetterQueueS3 {
52223
+ constructor(props: {
52224
+ /** The ARN of the S3 bucket */
52225
+ BucketArn: string;
52226
+ /** The error output prefix */
52227
+ ErrorOutputPrefix: string;
52228
+ /** Optional 12-digit AWS account ID expected to own the dead-letter S3 bucket */
52229
+ ExpectedBucketOwner?: string;
52230
+ });
52231
+ }
52232
+
52233
+ export declare class Channel_DestinationTable {
52234
+ constructor(props: {
52235
+ /** The destination database name */
52236
+ DestinationDatabaseName: string;
52237
+ /** The destination table name */
52238
+ DestinationTableName: string;
52239
+ PartitionSpec?: Channel_PartitionSpec;
52240
+ });
52241
+ }
52242
+
52243
+ export declare class Channel_EncryptionConfiguration {
52244
+ constructor(props: {
52245
+ /** The ARN of the KMS key for encryption */
52246
+ KmsKeyArn: string;
52247
+ });
52248
+ }
52249
+
52250
+ export declare class Channel_FirehoseLogDestination {
52251
+ constructor(props: {
52252
+ /** Whether Firehose logging is enabled */
52253
+ Enabled: boolean;
52254
+ /** The Firehose delivery stream for log delivery */
52255
+ DeliveryStream?: string;
52256
+ });
52257
+ }
52258
+
52259
+ export declare class Channel_IcebergDestinationConfiguration {
52260
+ constructor(props: {
52261
+ /** Append only mode */
52262
+ AppendOnly: boolean;
52263
+ DeadLetterQueueS3: Channel_DeadLetterQueueS3;
52264
+ /** List of destination tables */
52265
+ DestinationTableList: Channel_DestinationTable[];
52266
+ SchemaEvolution: Channel_SchemaEvolution;
52267
+ /** The Amazon Resource Name (ARN) of an IAM role used by MSK to access the table */
52268
+ ServiceExecutionRoleArn: string;
52269
+ TableCreation: Channel_TableCreation;
52270
+ Catalog?: Channel_Catalog;
52271
+ CompressionType?: Channel_IcebergCompressionType;
52272
+ /** Data freshness in seconds */
52273
+ DataFreshnessInSeconds?: number;
52274
+ });
52275
+ }
52276
+
52277
+ export declare class Channel_PartitionSpec {
52278
+ constructor(props: {
52279
+ PartitionStrategy: Channel_PartitionStrategy;
52280
+ /** Source list */
52281
+ SourceList?: Record<string, unknown>[];
52282
+ });
52283
+ }
52284
+
52285
+ export declare class Channel_RecordConverter {
52286
+ constructor(props: {
52287
+ ValueConverter: Channel_ValueConverter;
52288
+ });
52289
+ }
52290
+
52291
+ export declare class Channel_RecordSchema {
52292
+ constructor(props: {
52293
+ /** ARN of Glue Schema Registry resource used for table schema */
52294
+ GsrArn: string;
52295
+ });
52296
+ }
52297
+
52298
+ export declare class Channel_S3DestinationConfiguration {
52299
+ constructor(props: {
52300
+ DeadLetterQueueS3: Channel_DeadLetterQueueS3;
52301
+ /** The Amazon Resource Name (ARN) of an IAM role used by MSK to access S3 */
52302
+ ServiceExecutionRoleArn: string;
52303
+ Storage: Channel_S3Storage;
52304
+ /** Data freshness in seconds */
52305
+ DataFreshnessInSeconds?: number;
52306
+ });
52307
+ }
52308
+
52309
+ export declare class Channel_S3LogDestination {
52310
+ constructor(props: {
52311
+ /** Whether S3 logging is enabled */
52312
+ Enabled: boolean;
52313
+ /** The name of the S3 bucket for log delivery */
52314
+ Bucket?: string;
52315
+ /** The S3 prefix for log delivery */
52316
+ Prefix?: string;
52317
+ });
52318
+ }
52319
+
52320
+ export declare class Channel_S3Storage {
52321
+ constructor(props: {
52322
+ /** ARN of the S3 bucket */
52323
+ BucketArn: string;
52324
+ CompressionType: Channel_S3CompressionType;
52325
+ StorageClass: Channel_S3StorageClass;
52326
+ /** Optional 12-digit AWS account ID expected to own the S3 bucket */
52327
+ ExpectedBucketOwner?: string;
52328
+ /** Template for S3 key for output objects, used for partitioning */
52329
+ OutputKeyTemplate?: string;
52330
+ /** Optional prefix for output objects */
52331
+ OutputPrefix?: string;
52332
+ });
52333
+ }
52334
+
52335
+ export declare class Channel_SchemaEvolution {
52336
+ constructor(props: {
52337
+ /** Whether schema evolution is enabled */
52338
+ EnableSchemaEvolution: boolean;
52339
+ });
52340
+ }
52341
+
52342
+ export declare class Channel_TableCreation {
52343
+ constructor(props: {
52344
+ /** Whether table creation is enabled */
52345
+ EnableTableCreation: boolean;
52346
+ });
52347
+ }
52348
+
52349
+ export declare class Channel_TopicConfiguration {
52350
+ constructor(props: {
52351
+ RecordConverter: Channel_RecordConverter;
52352
+ /** The Amazon Resource Name (ARN) that uniquely identifies the topic */
52353
+ TopicArn: string;
52354
+ RecordSchema?: Channel_RecordSchema;
52355
+ });
52356
+ }
52357
+
52017
52358
  export declare class ChannelEngineVersionRequest {
52018
52359
  constructor(props: {
52019
52360
  Version?: string;
@@ -52029,9 +52370,9 @@ export declare class ChannelGroup_Tag {
52029
52370
 
52030
52371
  export declare class ChannelLoggingInfo {
52031
52372
  constructor(props: {
52032
- CloudWatchLogs?: MSKChannel_CloudWatchLogsLogDestination;
52033
- Firehose?: MSKChannel_FirehoseLogDestination;
52034
- S3?: MSKChannel_S3LogDestination;
52373
+ CloudWatchLogs?: Channel_CloudWatchLogsLogDestination;
52374
+ Firehose?: Channel_FirehoseLogDestination;
52375
+ S3?: Channel_S3LogDestination;
52035
52376
  });
52036
52377
  }
52037
52378
 
@@ -60741,6 +61082,40 @@ export declare class DataBrewProject_Tag {
60741
61082
  });
60742
61083
  }
60743
61084
 
61085
+ export declare class DataBrewRecipe_Action {
61086
+ constructor(props: {
61087
+ /** Step action operation */
61088
+ Operation: string;
61089
+ Parameters?: any;
61090
+ });
61091
+ }
61092
+
61093
+ export declare class DataBrewRecipe_ConditionExpression {
61094
+ constructor(props: {
61095
+ /** Input condition to be applied to the target column */
61096
+ Condition: string;
61097
+ /** Name of the target column */
61098
+ TargetColumn: string;
61099
+ /** Value of the condition */
61100
+ Value?: string;
61101
+ });
61102
+ }
61103
+
61104
+ export declare class DataBrewRecipe_RecipeStep {
61105
+ constructor(props: {
61106
+ Action: DataBrewRecipe_Action;
61107
+ /** Condition expressions applied to the step action */
61108
+ ConditionExpressions?: DataBrewRecipe_ConditionExpression[];
61109
+ });
61110
+ }
61111
+
61112
+ export declare class DataBrewRecipe_Tag {
61113
+ constructor(props: {
61114
+ Key: string;
61115
+ Value: string;
61116
+ });
61117
+ }
61118
+
60744
61119
  export declare class DataBrewSchedule_Tag {
60745
61120
  constructor(props: {
60746
61121
  Key: string;
@@ -64236,7 +64611,7 @@ export declare class DeprecateRule {
64236
64611
 
64237
64612
  export declare class DestinationConfigurations {
64238
64613
  constructor(props: {
64239
- S3Destination: Export_S3Destination;
64614
+ S3Destination: BCMDataExportsExport_S3Destination;
64240
64615
  });
64241
64616
  }
64242
64617
 
@@ -64298,7 +64673,7 @@ export declare class DestinationTable {
64298
64673
  DestinationDatabaseName: string;
64299
64674
  /** The destination table name */
64300
64675
  DestinationTableName: string;
64301
- PartitionSpec?: MSKChannel_PartitionSpec;
64676
+ PartitionSpec?: Channel_PartitionSpec;
64302
64677
  });
64303
64678
  }
64304
64679
 
@@ -71666,53 +72041,17 @@ export declare class Explanation {
71666
72041
  });
71667
72042
  }
71668
72043
 
71669
- export declare class Export_DataQuery {
71670
- constructor(props: {
71671
- QueryStatement: string;
71672
- TableConfigurations?: Record<string, unknown>;
71673
- });
71674
- }
71675
-
71676
- export declare class Export_DestinationConfigurations {
71677
- constructor(props: {
71678
- S3Destination: Export_S3Destination;
71679
- });
71680
- }
71681
-
71682
- export declare class Export_Export {
72044
+ export declare class Export {
71683
72045
  constructor(props: {
71684
- DataQuery: Export_DataQuery;
71685
- DestinationConfigurations: Export_DestinationConfigurations;
72046
+ DataQuery: BCMDataExportsExport_DataQuery;
72047
+ DestinationConfigurations: BCMDataExportsExport_DestinationConfigurations;
71686
72048
  Name: string;
71687
- RefreshCadence: Export_RefreshCadence;
72049
+ RefreshCadence: BCMDataExportsExport_RefreshCadence;
71688
72050
  Description?: string;
71689
72051
  ExportArn?: string;
71690
72052
  });
71691
72053
  }
71692
72054
 
71693
- export declare class Export_RefreshCadence {
71694
- constructor(props: {
71695
- Frequency: Export_FrequencyOption;
71696
- });
71697
- }
71698
-
71699
- export declare class Export_ResourceTag {
71700
- constructor(props: {
71701
- Key: string;
71702
- Value: string;
71703
- });
71704
- }
71705
-
71706
- export declare class Export_S3Destination {
71707
- constructor(props: {
71708
- S3Bucket: string;
71709
- S3OutputConfigurations: Record<string, unknown>;
71710
- S3Prefix: string;
71711
- S3Region: string;
71712
- S3BucketOwner?: string;
71713
- });
71714
- }
71715
-
71716
72055
  export declare class ExportHiddenFieldsOption {
71717
72056
  constructor(props: {
71718
72057
  AvailabilityStatus?: QuickSightDashboard_DashboardBehavior;
@@ -80746,6 +81085,8 @@ export declare class IntegratedRepository {
80746
81085
  IntegrationId: string;
80747
81086
  /** Identifier of the resource within the provider integration */
80748
81087
  ProviderResourceId: string;
81088
+ /** An optional override for the repository branch */
81089
+ Branch?: string;
80749
81090
  });
80750
81091
  }
80751
81092
 
@@ -90471,6 +90812,7 @@ export declare class MediaPackageV2OriginEndpoint_Segment {
90471
90812
  Encryption?: MediaPackageV2OriginEndpoint_Encryption;
90472
90813
  /** <p>When selected, the stream set includes an additional I-frame only stream, along with the other tracks. If false, this extra stream is not included. MediaPackage generates an I-frame only stream from the first rendition in the manifest. The service inserts EXT-I-FRAMES-ONLY tags in the output manifest, and then generates and includes an I-frames only playlist in the stream. This playlist permits player functionality like fast forward and rewind.</p> */
90473
90814
  IncludeIframeOnlyStreams?: boolean;
90815
+ OutputTimestampMode?: MediaPackageV2OriginEndpoint_OutputTimestampMode;
90474
90816
  Scte?: MediaPackageV2OriginEndpoint_Scte;
90475
90817
  /** <p>The duration (in seconds) of each segment. Enter a value equal to, or a multiple of, the input segment duration. If the value that you enter is different from the input segment duration, MediaPackage rounds segments to the nearest multiple of the input segment duration.</p> */
90476
90818
  SegmentDurationSeconds?: number;
@@ -93606,177 +93948,6 @@ export declare class MPAIdentitySource_IdentitySourceParameters {
93606
93948
  });
93607
93949
  }
93608
93950
 
93609
- export declare class MSKChannel_Catalog {
93610
- constructor(props: {
93611
- /** The ARN of the catalog */
93612
- CatalogArn?: string;
93613
- /** The warehouse location */
93614
- WarehouseLocation?: string;
93615
- });
93616
- }
93617
-
93618
- export declare class MSKChannel_ChannelLoggingInfo {
93619
- constructor(props: {
93620
- CloudWatchLogs?: MSKChannel_CloudWatchLogsLogDestination;
93621
- Firehose?: MSKChannel_FirehoseLogDestination;
93622
- S3?: MSKChannel_S3LogDestination;
93623
- });
93624
- }
93625
-
93626
- export declare class MSKChannel_ChannelStateInfo {
93627
- constructor(props: {
93628
- /** Code for channel state */
93629
- Code?: string;
93630
- /** Message for channel state */
93631
- Message?: string;
93632
- });
93633
- }
93634
-
93635
- export declare class MSKChannel_CloudWatchLogsLogDestination {
93636
- constructor(props: {
93637
- /** Whether CloudWatch Logs logging is enabled */
93638
- Enabled: boolean;
93639
- /** The CloudWatch log group for log delivery */
93640
- LogGroup?: string;
93641
- });
93642
- }
93643
-
93644
- export declare class MSKChannel_DeadLetterQueueS3 {
93645
- constructor(props: {
93646
- /** The ARN of the S3 bucket */
93647
- BucketArn: string;
93648
- /** The error output prefix */
93649
- ErrorOutputPrefix: string;
93650
- /** Optional 12-digit AWS account ID expected to own the dead-letter S3 bucket */
93651
- ExpectedBucketOwner?: string;
93652
- });
93653
- }
93654
-
93655
- export declare class MSKChannel_DestinationTable {
93656
- constructor(props: {
93657
- /** The destination database name */
93658
- DestinationDatabaseName: string;
93659
- /** The destination table name */
93660
- DestinationTableName: string;
93661
- PartitionSpec?: MSKChannel_PartitionSpec;
93662
- });
93663
- }
93664
-
93665
- export declare class MSKChannel_EncryptionConfiguration {
93666
- constructor(props: {
93667
- /** The ARN of the KMS key for encryption */
93668
- KmsKeyArn: string;
93669
- });
93670
- }
93671
-
93672
- export declare class MSKChannel_FirehoseLogDestination {
93673
- constructor(props: {
93674
- /** Whether Firehose logging is enabled */
93675
- Enabled: boolean;
93676
- /** The Firehose delivery stream for log delivery */
93677
- DeliveryStream?: string;
93678
- });
93679
- }
93680
-
93681
- export declare class MSKChannel_IcebergDestinationConfiguration {
93682
- constructor(props: {
93683
- /** Append only mode */
93684
- AppendOnly: boolean;
93685
- DeadLetterQueueS3: MSKChannel_DeadLetterQueueS3;
93686
- /** List of destination tables */
93687
- DestinationTableList: MSKChannel_DestinationTable[];
93688
- SchemaEvolution: MSKChannel_SchemaEvolution;
93689
- /** The Amazon Resource Name (ARN) of an IAM role used by MSK to access the table */
93690
- ServiceExecutionRoleArn: string;
93691
- TableCreation: MSKChannel_TableCreation;
93692
- Catalog?: MSKChannel_Catalog;
93693
- CompressionType?: MSKChannel_IcebergCompressionType;
93694
- /** Data freshness in seconds */
93695
- DataFreshnessInSeconds?: number;
93696
- });
93697
- }
93698
-
93699
- export declare class MSKChannel_PartitionSpec {
93700
- constructor(props: {
93701
- PartitionStrategy: MSKChannel_PartitionStrategy;
93702
- /** Source list */
93703
- SourceList?: Record<string, unknown>[];
93704
- });
93705
- }
93706
-
93707
- export declare class MSKChannel_RecordConverter {
93708
- constructor(props: {
93709
- ValueConverter: MSKChannel_ValueConverter;
93710
- });
93711
- }
93712
-
93713
- export declare class MSKChannel_RecordSchema {
93714
- constructor(props: {
93715
- /** ARN of Glue Schema Registry resource used for table schema */
93716
- GsrArn: string;
93717
- });
93718
- }
93719
-
93720
- export declare class MSKChannel_S3DestinationConfiguration {
93721
- constructor(props: {
93722
- DeadLetterQueueS3: MSKChannel_DeadLetterQueueS3;
93723
- /** The Amazon Resource Name (ARN) of an IAM role used by MSK to access S3 */
93724
- ServiceExecutionRoleArn: string;
93725
- Storage: MSKChannel_S3Storage;
93726
- /** Data freshness in seconds */
93727
- DataFreshnessInSeconds?: number;
93728
- });
93729
- }
93730
-
93731
- export declare class MSKChannel_S3LogDestination {
93732
- constructor(props: {
93733
- /** Whether S3 logging is enabled */
93734
- Enabled: boolean;
93735
- /** The name of the S3 bucket for log delivery */
93736
- Bucket?: string;
93737
- /** The S3 prefix for log delivery */
93738
- Prefix?: string;
93739
- });
93740
- }
93741
-
93742
- export declare class MSKChannel_S3Storage {
93743
- constructor(props: {
93744
- /** ARN of the S3 bucket */
93745
- BucketArn: string;
93746
- CompressionType: MSKChannel_S3CompressionType;
93747
- StorageClass: MSKChannel_S3StorageClass;
93748
- /** Optional 12-digit AWS account ID expected to own the S3 bucket */
93749
- ExpectedBucketOwner?: string;
93750
- /** Template for S3 key for output objects, used for partitioning */
93751
- OutputKeyTemplate?: string;
93752
- /** Optional prefix for output objects */
93753
- OutputPrefix?: string;
93754
- });
93755
- }
93756
-
93757
- export declare class MSKChannel_SchemaEvolution {
93758
- constructor(props: {
93759
- /** Whether schema evolution is enabled */
93760
- EnableSchemaEvolution: boolean;
93761
- });
93762
- }
93763
-
93764
- export declare class MSKChannel_TableCreation {
93765
- constructor(props: {
93766
- /** Whether table creation is enabled */
93767
- EnableTableCreation: boolean;
93768
- });
93769
- }
93770
-
93771
- export declare class MSKChannel_TopicConfiguration {
93772
- constructor(props: {
93773
- RecordConverter: MSKChannel_RecordConverter;
93774
- /** The Amazon Resource Name (ARN) that uniquely identifies the topic */
93775
- TopicArn: string;
93776
- RecordSchema?: MSKChannel_RecordSchema;
93777
- });
93778
- }
93779
-
93780
93951
  export declare class MSKCluster_BrokerLogs {
93781
93952
  constructor(props: {
93782
93953
  CloudWatchLogs?: MSKCluster_CloudWatchLogs;
@@ -98238,21 +98409,6 @@ export declare class OwnershipSettings {
98238
98409
  });
98239
98410
  }
98240
98411
 
98241
- export declare class Package_StorageLocation {
98242
- constructor(props: {
98243
- /** The location's binary prefix. */
98244
- BinaryPrefixLocation?: string;
98245
- /** The location's bucket. */
98246
- Bucket?: string;
98247
- /** The location's generated prefix. */
98248
- GeneratedPrefixLocation?: string;
98249
- /** The location's manifest prefix. */
98250
- ManifestPrefixLocation?: string;
98251
- /** The location's repo prefix. */
98252
- RepoPrefixLocation?: string;
98253
- });
98254
- }
98255
-
98256
98412
  export declare class PackageGroup_OriginConfiguration {
98257
98413
  constructor(props: {
98258
98414
  /** The origin configuration that is applied to the package group. */
@@ -98489,6 +98645,21 @@ export declare class PagerDutyIncidentConfiguration {
98489
98645
  });
98490
98646
  }
98491
98647
 
98648
+ export declare class PanoramaPackage_StorageLocation {
98649
+ constructor(props: {
98650
+ /** The location's binary prefix. */
98651
+ BinaryPrefixLocation?: string;
98652
+ /** The location's bucket. */
98653
+ Bucket?: string;
98654
+ /** The location's generated prefix. */
98655
+ GeneratedPrefixLocation?: string;
98656
+ /** The location's manifest prefix. */
98657
+ ManifestPrefixLocation?: string;
98658
+ /** The location's repo prefix. */
98659
+ RepoPrefixLocation?: string;
98660
+ });
98661
+ }
98662
+
98492
98663
  export declare class ParallelismConfiguration {
98493
98664
  constructor(props: {
98494
98665
  /** Describes whether the application uses the default parallelism for the Kinesis Data Analytics service. You must set this property to `CUSTOM` in order to change your application's `AutoScalingEnabled`, `Parallelism`, or `ParallelismPerKPU` properties. */
@@ -98733,7 +98904,7 @@ export declare class PartitionInput {
98733
98904
 
98734
98905
  export declare class PartitionSpec {
98735
98906
  constructor(props: {
98736
- PartitionStrategy: MSKChannel_PartitionStrategy;
98907
+ PartitionStrategy: Channel_PartitionStrategy;
98737
98908
  /** Source list */
98738
98909
  SourceList?: Record<string, unknown>[];
98739
98910
  });
@@ -99306,6 +99477,8 @@ export declare class Pentest_IntegratedRepository {
99306
99477
  IntegrationId: string;
99307
99478
  /** Identifier of the resource within the provider integration */
99308
99479
  ProviderResourceId: string;
99480
+ /** An optional override for the repository branch */
99481
+ Branch?: string;
99309
99482
  });
99310
99483
  }
99311
99484
 
@@ -100677,6 +100850,30 @@ export declare class PlaybackConfiguration_AdsInteractionLog {
100677
100850
  });
100678
100851
  }
100679
100852
 
100853
+ export declare class PlaybackConfiguration_AdsPersonalizationConcurrency {
100854
+ constructor(props: {
100855
+ /** Enables parallel processing of ADS requests in VOD workflows when the ADS returns VAST responses. The default is false. */
100856
+ EnableVodVastParallelization?: boolean;
100857
+ /** The maximum number of simultaneous requests that MediaTailor makes to the ADS for each manifest request. The default is 1. */
100858
+ MaxConcurrentAdsRequests?: number;
100859
+ });
100860
+ }
100861
+
100862
+ export declare class PlaybackConfiguration_AdsPersonalizationTimeouts {
100863
+ constructor(props: {
100864
+ /** The maximum time, in milliseconds, that MediaTailor waits for a single ADS response during live or VOD playback. The default is 3000. */
100865
+ AdsRequestTimeoutMilliseconds?: number;
100866
+ /** The maximum total time, in milliseconds, that MediaTailor spends on ADS activity for live manifests. The default is 10000. */
100867
+ LiveMaximumAdsPersonalizationTimeMilliseconds?: number;
100868
+ /** The maximum time, in milliseconds, that MediaTailor waits for a single ADS response during prefetch retrieval. If not set, MediaTailor uses the AdsRequestTimeoutMilliseconds value. */
100869
+ PrefetchAdsRequestTimeoutMilliseconds?: number;
100870
+ /** The maximum total time, in milliseconds, that MediaTailor spends on ADS activity during prefetch retrieval. */
100871
+ PrefetchMaximumAdsPersonalizationTimeMilliseconds?: number;
100872
+ /** The maximum total time, in milliseconds, that MediaTailor spends on ADS activity for VOD manifests. The default is 10000. */
100873
+ VodMaximumAdsPersonalizationTimeMilliseconds?: number;
100874
+ });
100875
+ }
100876
+
100680
100877
  export declare class PlaybackConfiguration_AvailSuppression {
100681
100878
  constructor(props: {
100682
100879
  /** Defines the policy to apply to the avail suppression mode. BEHIND_LIVE_EDGE will always use the full avail suppression policy. AFTER_LIVE_EDGE mode can be used to invoke partial ad break fills when a session starts mid-break. Valid values are FULL_AVAIL_ONLY and PARTIAL_AVAIL */
@@ -105218,37 +105415,12 @@ export declare class Recency {
105218
105415
  });
105219
105416
  }
105220
105417
 
105221
- export declare class Recipe_Action {
105222
- constructor(props: {
105223
- /** Step action operation */
105224
- Operation: string;
105225
- Parameters?: any;
105226
- });
105227
- }
105228
-
105229
- export declare class Recipe_ConditionExpression {
105230
- constructor(props: {
105231
- /** Input condition to be applied to the target column */
105232
- Condition: string;
105233
- /** Name of the target column */
105234
- TargetColumn: string;
105235
- /** Value of the condition */
105236
- Value?: string;
105237
- });
105238
- }
105239
-
105240
- export declare class Recipe_RecipeStep {
105241
- constructor(props: {
105242
- Action: Recipe_Action;
105243
- /** Condition expressions applied to the step action */
105244
- ConditionExpressions?: Recipe_ConditionExpression[];
105245
- });
105246
- }
105247
-
105248
- export declare class Recipe_Tag {
105418
+ export declare class Recipe {
105249
105419
  constructor(props: {
105250
- Key: string;
105251
- Value: string;
105420
+ /** Recipe name */
105421
+ Name: string;
105422
+ /** Recipe version */
105423
+ Version?: string;
105252
105424
  });
105253
105425
  }
105254
105426
 
@@ -105263,9 +105435,9 @@ export declare class RecipeSelection {
105263
105435
 
105264
105436
  export declare class RecipeStep {
105265
105437
  constructor(props: {
105266
- Action: Recipe_Action;
105438
+ Action: DataBrewRecipe_Action;
105267
105439
  /** Condition expressions applied to the step action */
105268
- ConditionExpressions?: Recipe_ConditionExpression[];
105440
+ ConditionExpressions?: DataBrewRecipe_ConditionExpression[];
105269
105441
  });
105270
105442
  }
105271
105443
 
@@ -105348,7 +105520,7 @@ export declare class RecommenderUpdate {
105348
105520
 
105349
105521
  export declare class RecordConverter {
105350
105522
  constructor(props: {
105351
- ValueConverter: MSKChannel_ValueConverter;
105523
+ ValueConverter: Channel_ValueConverter;
105352
105524
  });
105353
105525
  }
105354
105526
 
@@ -106043,7 +106215,7 @@ export declare class ReferrerPolicy {
106043
106215
 
106044
106216
  export declare class RefreshCadence {
106045
106217
  constructor(props: {
106046
- Frequency: Export_FrequencyOption;
106218
+ Frequency: BCMDataExportsExport_FrequencyOption;
106047
106219
  });
106048
106220
  }
106049
106221
 
@@ -106310,6 +106482,27 @@ export declare class ReplaceDefaultPolicyVersionParams {
106310
106482
  });
106311
106483
  }
106312
106484
 
106485
+ export declare class Replica {
106486
+ constructor(props: {
106487
+ /** AWS region for the replica (e.g., us-east-1) */
106488
+ Location: string;
106489
+ /** State of the replica canary (CREATING, READY, RUNNING, etc.) */
106490
+ CanaryState?: string;
106491
+ /** ARN of the KMS key used to encrypt the replica canary's Lambda function environment variables */
106492
+ KmsKeyArn?: string;
106493
+ /** Last modified timestamp of the replica */
106494
+ LastModified?: number;
106495
+ /** Replication status for this replica */
106496
+ ReplicationStatus?: Canary_ReplicaReplicationStatus;
106497
+ /** Resources to replicate tags to for this replica (e.g., lambda-function) */
106498
+ ResourcesToReplicateTags?: Canary_ResourceToTag[];
106499
+ /** Tags to apply to this replica canary and optionally its Lambda function */
106500
+ Tags?: Canary_Tag[];
106501
+ /** VPC configuration for this replica location */
106502
+ VpcConfig?: Canary_VPCConfig;
106503
+ });
106504
+ }
106505
+
106313
106506
  export declare class ReplicaGlobalSecondaryIndexSpecification {
106314
106507
  constructor(props: {
106315
106508
  IndexName: string;
@@ -106337,6 +106530,13 @@ export declare class ReplicaRegion {
106337
106530
  });
106338
106531
  }
106339
106532
 
106533
+ export declare class ReplicaReplicationStatus {
106534
+ constructor(props: {
106535
+ /** Replication state: InProgress, InSync, or Inconsistent */
106536
+ State?: string;
106537
+ });
106538
+ }
106539
+
106340
106540
  export declare class ReplicaSSESpecification {
106341
106541
  constructor(props: {
106342
106542
  KMSMasterKeyId: any;
@@ -109889,8 +110089,8 @@ export declare class S3Storage {
109889
110089
  constructor(props: {
109890
110090
  /** ARN of the S3 bucket */
109891
110091
  BucketArn: string;
109892
- CompressionType: MSKChannel_S3CompressionType;
109893
- StorageClass: MSKChannel_S3StorageClass;
110092
+ CompressionType: Channel_S3CompressionType;
110093
+ StorageClass: Channel_S3StorageClass;
109894
110094
  /** Optional 12-digit AWS account ID expected to own the S3 bucket */
109895
110095
  ExpectedBucketOwner?: string;
109896
110096
  /** Template for S3 key for output objects, used for partitioning */
@@ -110790,131 +110990,6 @@ export declare class SageMakerProject_TemplateProviderDetail {
110790
110990
  });
110791
110991
  }
110792
110992
 
110793
- export declare class SageMakerSpace_CodeRepository {
110794
- constructor(props: {
110795
- /** A CodeRepository (valid URL) to be used within Jupyter's Git extension. */
110796
- RepositoryUrl: string;
110797
- });
110798
- }
110799
-
110800
- export declare class SageMakerSpace_CustomImage {
110801
- constructor(props: {
110802
- /** The Name of the AppImageConfig. */
110803
- AppImageConfigName: string;
110804
- /** The name of the CustomImage. Must be unique to your account. */
110805
- ImageName: string;
110806
- /** The version number of the CustomImage. */
110807
- ImageVersionNumber?: number;
110808
- });
110809
- }
110810
-
110811
- export declare class SageMakerSpace_EbsStorageSettings {
110812
- constructor(props: {
110813
- /** Size of the Amazon EBS volume in Gb */
110814
- EbsVolumeSizeInGb: number;
110815
- });
110816
- }
110817
-
110818
- export declare class SageMakerSpace_JupyterServerAppSettings {
110819
- constructor(props: {
110820
- DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
110821
- /** A list of LifecycleConfigArns available for use with JupyterServer apps. */
110822
- LifecycleConfigArns?: string[];
110823
- });
110824
- }
110825
-
110826
- export declare class SageMakerSpace_KernelGatewayAppSettings {
110827
- constructor(props: {
110828
- /** A list of custom SageMaker images that are configured to run as a KernelGateway app. */
110829
- CustomImages?: SageMakerSpace_CustomImage[];
110830
- /** The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app. */
110831
- DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
110832
- /** A list of LifecycleConfigArns available for use with KernelGateway apps. */
110833
- LifecycleConfigArns?: string[];
110834
- });
110835
- }
110836
-
110837
- export declare class SageMakerSpace_OwnershipSettings {
110838
- constructor(props: {
110839
- OwnerUserProfileName: string;
110840
- });
110841
- }
110842
-
110843
- export declare class SageMakerSpace_ResourceSpec {
110844
- constructor(props: {
110845
- /** The instance type that the image version runs on. */
110846
- InstanceType?: "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.2xlarge" | "ml.g5.48xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.xlarge" | "ml.geospatial.interactive" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.p3.16xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3dn.24xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.t3.2xlarge" | "ml.t3.large" | "ml.t3.medium" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "system";
110847
- /** The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource. */
110848
- LifecycleConfigArn?: string;
110849
- /** The ARN of the SageMaker image that the image version belongs to. */
110850
- SageMakerImageArn?: string;
110851
- /** The ARN of the image version created on the instance. */
110852
- SageMakerImageVersionArn?: string;
110853
- });
110854
- }
110855
-
110856
- export declare class SageMakerSpace_SpaceAppLifecycleManagement {
110857
- constructor(props: {
110858
- IdleSettings?: Record<string, unknown>;
110859
- });
110860
- }
110861
-
110862
- export declare class SageMakerSpace_SpaceCodeEditorAppSettings {
110863
- constructor(props: {
110864
- AppLifecycleManagement?: SageMakerSpace_SpaceAppLifecycleManagement;
110865
- DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
110866
- });
110867
- }
110868
-
110869
- export declare class SageMakerSpace_SpaceJupyterLabAppSettings {
110870
- constructor(props: {
110871
- AppLifecycleManagement?: SageMakerSpace_SpaceAppLifecycleManagement;
110872
- /** A list of CodeRepositories available for use with JupyterLab apps. */
110873
- CodeRepositories?: SageMakerSpace_CodeRepository[];
110874
- DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
110875
- });
110876
- }
110877
-
110878
- export declare class SageMakerSpace_SpaceSettings {
110879
- constructor(props: {
110880
- AppType?: SageMakerSpace_AppType;
110881
- /** The CodeEditor app settings. */
110882
- CodeEditorAppSettings?: SageMakerSpace_SpaceCodeEditorAppSettings;
110883
- CustomFileSystems?: any;
110884
- /** The JupyterLab app settings. */
110885
- JupyterLabAppSettings?: SageMakerSpace_SpaceJupyterLabAppSettings;
110886
- /** The Jupyter server's app settings. */
110887
- JupyterServerAppSettings?: SageMakerSpace_JupyterServerAppSettings;
110888
- /** The kernel gateway app settings. */
110889
- KernelGatewayAppSettings?: SageMakerSpace_KernelGatewayAppSettings;
110890
- /** This is a flag used to indicate if remote access is enabled. */
110891
- RemoteAccess?: SageMakerSpace_RemoteAccess;
110892
- /** This is a flag used to indicate if space managed resources needs to be created. */
110893
- SpaceManagedResources?: SageMakerSpace_SpaceManagedResources;
110894
- /** Default storage settings for a space. */
110895
- SpaceStorageSettings?: SageMakerSpace_SpaceStorageSettings;
110896
- });
110897
- }
110898
-
110899
- export declare class SageMakerSpace_SpaceSharingSettings {
110900
- constructor(props: {
110901
- SharingType: "Private" | "Shared";
110902
- });
110903
- }
110904
-
110905
- export declare class SageMakerSpace_SpaceStorageSettings {
110906
- constructor(props: {
110907
- EbsStorageSettings?: SageMakerSpace_EbsStorageSettings;
110908
- });
110909
- }
110910
-
110911
- export declare class SageMakerSpace_Tag {
110912
- constructor(props: {
110913
- Key: string;
110914
- Value: string;
110915
- });
110916
- }
110917
-
110918
110993
  export declare class SageMakerUserProfile_AppLifecycleManagement {
110919
110994
  constructor(props: {
110920
110995
  IdleSettings?: Record<string, unknown>;
@@ -113044,6 +113119,7 @@ export declare class Segment {
113044
113119
  Encryption?: MediaPackageV2OriginEndpoint_Encryption;
113045
113120
  /** <p>When selected, the stream set includes an additional I-frame only stream, along with the other tracks. If false, this extra stream is not included. MediaPackage generates an I-frame only stream from the first rendition in the manifest. The service inserts EXT-I-FRAMES-ONLY tags in the output manifest, and then generates and includes an I-frames only playlist in the stream. This playlist permits player functionality like fast forward and rewind.</p> */
113046
113121
  IncludeIframeOnlyStreams?: boolean;
113122
+ OutputTimestampMode?: MediaPackageV2OriginEndpoint_OutputTimestampMode;
113047
113123
  Scte?: MediaPackageV2OriginEndpoint_Scte;
113048
113124
  /** <p>The duration (in seconds) of each segment. Enter a value equal to, or a multiple of, the input segment duration. If the value that you enter is different from the input segment duration, MediaPackage rounds segments to the nearest multiple of the input segment duration.</p> */
113049
113125
  SegmentDurationSeconds?: number;
@@ -115186,6 +115262,15 @@ export declare class SnapshotManagement {
115186
115262
  });
115187
115263
  }
115188
115264
 
115265
+ export declare class SnapshotSchedule_Tag {
115266
+ constructor(props: {
115267
+ /** The key, or name, for the resource tag. */
115268
+ Key: string;
115269
+ /** The value for the resource tag. */
115270
+ Value: string;
115271
+ });
115272
+ }
115273
+
115189
115274
  export declare class SnapStart {
115190
115275
  constructor(props: {
115191
115276
  /** Set ``ApplyOn`` to ``PublishedVersions`` to create a snapshot of the initialized execution environment when you publish a function version. */
@@ -115659,6 +115744,131 @@ export declare class SourceSelectionCriteria {
115659
115744
  });
115660
115745
  }
115661
115746
 
115747
+ export declare class Space_CodeRepository {
115748
+ constructor(props: {
115749
+ /** A CodeRepository (valid URL) to be used within Jupyter's Git extension. */
115750
+ RepositoryUrl: string;
115751
+ });
115752
+ }
115753
+
115754
+ export declare class Space_CustomImage {
115755
+ constructor(props: {
115756
+ /** The Name of the AppImageConfig. */
115757
+ AppImageConfigName: string;
115758
+ /** The name of the CustomImage. Must be unique to your account. */
115759
+ ImageName: string;
115760
+ /** The version number of the CustomImage. */
115761
+ ImageVersionNumber?: number;
115762
+ });
115763
+ }
115764
+
115765
+ export declare class Space_EbsStorageSettings {
115766
+ constructor(props: {
115767
+ /** Size of the Amazon EBS volume in Gb */
115768
+ EbsVolumeSizeInGb: number;
115769
+ });
115770
+ }
115771
+
115772
+ export declare class Space_JupyterServerAppSettings {
115773
+ constructor(props: {
115774
+ DefaultResourceSpec?: Space_ResourceSpec;
115775
+ /** A list of LifecycleConfigArns available for use with JupyterServer apps. */
115776
+ LifecycleConfigArns?: string[];
115777
+ });
115778
+ }
115779
+
115780
+ export declare class Space_KernelGatewayAppSettings {
115781
+ constructor(props: {
115782
+ /** A list of custom SageMaker images that are configured to run as a KernelGateway app. */
115783
+ CustomImages?: Space_CustomImage[];
115784
+ /** The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app. */
115785
+ DefaultResourceSpec?: Space_ResourceSpec;
115786
+ /** A list of LifecycleConfigArns available for use with KernelGateway apps. */
115787
+ LifecycleConfigArns?: string[];
115788
+ });
115789
+ }
115790
+
115791
+ export declare class Space_OwnershipSettings {
115792
+ constructor(props: {
115793
+ OwnerUserProfileName: string;
115794
+ });
115795
+ }
115796
+
115797
+ export declare class Space_ResourceSpec {
115798
+ constructor(props: {
115799
+ /** The instance type that the image version runs on. */
115800
+ InstanceType?: "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.2xlarge" | "ml.g5.48xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.xlarge" | "ml.geospatial.interactive" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.p3.16xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3dn.24xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.t3.2xlarge" | "ml.t3.large" | "ml.t3.medium" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "system";
115801
+ /** The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource. */
115802
+ LifecycleConfigArn?: string;
115803
+ /** The ARN of the SageMaker image that the image version belongs to. */
115804
+ SageMakerImageArn?: string;
115805
+ /** The ARN of the image version created on the instance. */
115806
+ SageMakerImageVersionArn?: string;
115807
+ });
115808
+ }
115809
+
115810
+ export declare class Space_SpaceAppLifecycleManagement {
115811
+ constructor(props: {
115812
+ IdleSettings?: Record<string, unknown>;
115813
+ });
115814
+ }
115815
+
115816
+ export declare class Space_SpaceCodeEditorAppSettings {
115817
+ constructor(props: {
115818
+ AppLifecycleManagement?: Space_SpaceAppLifecycleManagement;
115819
+ DefaultResourceSpec?: Space_ResourceSpec;
115820
+ });
115821
+ }
115822
+
115823
+ export declare class Space_SpaceJupyterLabAppSettings {
115824
+ constructor(props: {
115825
+ AppLifecycleManagement?: Space_SpaceAppLifecycleManagement;
115826
+ /** A list of CodeRepositories available for use with JupyterLab apps. */
115827
+ CodeRepositories?: Space_CodeRepository[];
115828
+ DefaultResourceSpec?: Space_ResourceSpec;
115829
+ });
115830
+ }
115831
+
115832
+ export declare class Space_SpaceSettings {
115833
+ constructor(props: {
115834
+ AppType?: Space_AppType;
115835
+ /** The CodeEditor app settings. */
115836
+ CodeEditorAppSettings?: Space_SpaceCodeEditorAppSettings;
115837
+ CustomFileSystems?: any;
115838
+ /** The JupyterLab app settings. */
115839
+ JupyterLabAppSettings?: Space_SpaceJupyterLabAppSettings;
115840
+ /** The Jupyter server's app settings. */
115841
+ JupyterServerAppSettings?: Space_JupyterServerAppSettings;
115842
+ /** The kernel gateway app settings. */
115843
+ KernelGatewayAppSettings?: Space_KernelGatewayAppSettings;
115844
+ /** This is a flag used to indicate if remote access is enabled. */
115845
+ RemoteAccess?: Space_RemoteAccess;
115846
+ /** This is a flag used to indicate if space managed resources needs to be created. */
115847
+ SpaceManagedResources?: Space_SpaceManagedResources;
115848
+ /** Default storage settings for a space. */
115849
+ SpaceStorageSettings?: Space_SpaceStorageSettings;
115850
+ });
115851
+ }
115852
+
115853
+ export declare class Space_SpaceSharingSettings {
115854
+ constructor(props: {
115855
+ SharingType: "Private" | "Shared";
115856
+ });
115857
+ }
115858
+
115859
+ export declare class Space_SpaceStorageSettings {
115860
+ constructor(props: {
115861
+ EbsStorageSettings?: Space_EbsStorageSettings;
115862
+ });
115863
+ }
115864
+
115865
+ export declare class Space_Tag {
115866
+ constructor(props: {
115867
+ Key: string;
115868
+ Value: string;
115869
+ });
115870
+ }
115871
+
115662
115872
  export declare class SpaceAppLifecycleManagement {
115663
115873
  constructor(props: {
115664
115874
  IdleSettings?: Record<string, unknown>;
@@ -115667,17 +115877,17 @@ export declare class SpaceAppLifecycleManagement {
115667
115877
 
115668
115878
  export declare class SpaceCodeEditorAppSettings {
115669
115879
  constructor(props: {
115670
- AppLifecycleManagement?: SageMakerSpace_SpaceAppLifecycleManagement;
115671
- DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
115880
+ AppLifecycleManagement?: Space_SpaceAppLifecycleManagement;
115881
+ DefaultResourceSpec?: Space_ResourceSpec;
115672
115882
  });
115673
115883
  }
115674
115884
 
115675
115885
  export declare class SpaceJupyterLabAppSettings {
115676
115886
  constructor(props: {
115677
- AppLifecycleManagement?: SageMakerSpace_SpaceAppLifecycleManagement;
115887
+ AppLifecycleManagement?: Space_SpaceAppLifecycleManagement;
115678
115888
  /** A list of CodeRepositories available for use with JupyterLab apps. */
115679
- CodeRepositories?: SageMakerSpace_CodeRepository[];
115680
- DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
115889
+ CodeRepositories?: Space_CodeRepository[];
115890
+ DefaultResourceSpec?: Space_ResourceSpec;
115681
115891
  });
115682
115892
  }
115683
115893
 
@@ -115692,22 +115902,22 @@ export declare class SpaceResource {
115692
115902
 
115693
115903
  export declare class SpaceSettings {
115694
115904
  constructor(props: {
115695
- AppType?: SageMakerSpace_AppType;
115905
+ AppType?: Space_AppType;
115696
115906
  /** The CodeEditor app settings. */
115697
- CodeEditorAppSettings?: SageMakerSpace_SpaceCodeEditorAppSettings;
115907
+ CodeEditorAppSettings?: Space_SpaceCodeEditorAppSettings;
115698
115908
  CustomFileSystems?: any;
115699
115909
  /** The JupyterLab app settings. */
115700
- JupyterLabAppSettings?: SageMakerSpace_SpaceJupyterLabAppSettings;
115910
+ JupyterLabAppSettings?: Space_SpaceJupyterLabAppSettings;
115701
115911
  /** The Jupyter server's app settings. */
115702
- JupyterServerAppSettings?: SageMakerSpace_JupyterServerAppSettings;
115912
+ JupyterServerAppSettings?: Space_JupyterServerAppSettings;
115703
115913
  /** The kernel gateway app settings. */
115704
- KernelGatewayAppSettings?: SageMakerSpace_KernelGatewayAppSettings;
115914
+ KernelGatewayAppSettings?: Space_KernelGatewayAppSettings;
115705
115915
  /** This is a flag used to indicate if remote access is enabled. */
115706
- RemoteAccess?: SageMakerSpace_RemoteAccess;
115916
+ RemoteAccess?: Space_RemoteAccess;
115707
115917
  /** This is a flag used to indicate if space managed resources needs to be created. */
115708
- SpaceManagedResources?: SageMakerSpace_SpaceManagedResources;
115918
+ SpaceManagedResources?: Space_SpaceManagedResources;
115709
115919
  /** Default storage settings for a space. */
115710
- SpaceStorageSettings?: SageMakerSpace_SpaceStorageSettings;
115920
+ SpaceStorageSettings?: Space_SpaceStorageSettings;
115711
115921
  });
115712
115922
  }
115713
115923
 
@@ -115719,7 +115929,7 @@ export declare class SpaceSharingSettings {
115719
115929
 
115720
115930
  export declare class SpaceStorageSettings {
115721
115931
  constructor(props: {
115722
- EbsStorageSettings?: SageMakerSpace_EbsStorageSettings;
115932
+ EbsStorageSettings?: Space_EbsStorageSettings;
115723
115933
  });
115724
115934
  }
115725
115935
 
@@ -128684,6 +128894,16 @@ export type BCMDashboard_MetricName =
128684
128894
 
128685
128895
  export type BCMDashboard_VisualType = "BAR" | "LINE" | "STACK";
128686
128896
 
128897
+ export type BCMDataExportsExport_CompressionOption = "GZIP" | "PARQUET" | "ZIP";
128898
+
128899
+ export type BCMDataExportsExport_FormatOption = "PARQUET" | "TEXT_OR_CSV";
128900
+
128901
+ export type BCMDataExportsExport_FrequencyOption = "SYNCHRONOUS";
128902
+
128903
+ export type BCMDataExportsExport_OverwriteOption = "CREATE_NEW_REPORT" | "OVERWRITE_REPORT";
128904
+
128905
+ export type BCMDataExportsExport_S3OutputType = "ATHENA" | "CUSTOM" | "REDSHIFT";
128906
+
128687
128907
  export type BedrockAgent_ActionGroupSignature = "AMAZON.CodeInterpreter" | "AMAZON.UserInput";
128688
128908
 
128689
128909
  export type BedrockAgent_ActionGroupState = "DISABLED" | "ENABLED";
@@ -129049,6 +129269,25 @@ export type CfDistribution_OriginGroupSelectionCriteria = "default" | "media-qua
129049
129269
 
129050
129270
  export type CfDistribution_ViewerMtlsMode = "optional" | "passthrough" | "required";
129051
129271
 
129272
+ export type Channel_ChannelStatus =
129273
+ | "ACTIVE"
129274
+ | "CREATING"
129275
+ | "DELETING"
129276
+ | "FAILED"
129277
+ | "SUSPENDED"
129278
+ | "SUSPENDING"
129279
+ | "UPDATING";
129280
+
129281
+ export type Channel_IcebergCompressionType = "SNAPPY" | "ZSTD";
129282
+
129283
+ export type Channel_PartitionStrategy = "TIME_HOUR";
129284
+
129285
+ export type Channel_S3CompressionType = "GZIP" | "NONE" | "ZSTD";
129286
+
129287
+ export type Channel_S3StorageClass = "GLACIER_IR" | "INTELLIGENT_TIERING" | "STANDARD";
129288
+
129289
+ export type Channel_ValueConverter = "BYTE_ARRAY" | "JSON" | "JSON_SCHEMA_GSR" | "STRING";
129290
+
129052
129291
  export type ChannelNamespace_AuthenticationType =
129053
129292
  | "AMAZON_COGNITO_USER_POOLS"
129054
129293
  | "API_KEY"
@@ -130061,16 +130300,6 @@ export type EVSEnvironment_EnvironmentState =
130061
130300
  | "DELETED"
130062
130301
  | "DELETING";
130063
130302
 
130064
- export type Export_CompressionOption = "GZIP" | "PARQUET" | "ZIP";
130065
-
130066
- export type Export_FormatOption = "PARQUET" | "TEXT_OR_CSV";
130067
-
130068
- export type Export_FrequencyOption = "SYNCHRONOUS";
130069
-
130070
- export type Export_OverwriteOption = "CREATE_NEW_REPORT" | "OVERWRITE_REPORT";
130071
-
130072
- export type Export_S3OutputType = "ATHENA" | "CUSTOM" | "REDSHIFT";
130073
-
130074
130303
  export type ExpressGatewayService_AccessType = "PRIVATE" | "PUBLIC";
130075
130304
 
130076
130305
  export type ExpressGatewayService_ExpressGatewayServiceScalingMetric =
@@ -131126,6 +131355,8 @@ export type MediaPackageOriginEndpoint_AdsOnDeliveryRestrictions =
131126
131355
 
131127
131356
  export type MediaPackageV2Channel_InputType = "CMAF" | "HLS";
131128
131357
 
131358
+ export type MediaPackageV2Channel_OutputLockingMode = "EPOCH_LOCKED" | "NON_EPOCH_LOCKED";
131359
+
131129
131360
  export type MediaPackageV2OriginEndpoint_AdMarkerDash = "BINARY" | "XML";
131130
131361
 
131131
131362
  export type MediaPackageV2OriginEndpoint_AdMarkerHls = "DATERANGE" | "SCTE35_ENHANCED";
@@ -131183,6 +131414,10 @@ export type MediaPackageV2OriginEndpoint_IsmEncryptionMethod = "CENC";
131183
131414
 
131184
131415
  export type MediaPackageV2OriginEndpoint_MssManifestLayout = "COMPACT" | "FULL";
131185
131416
 
131417
+ export type MediaPackageV2OriginEndpoint_OutputTimestampMode =
131418
+ | "PASSTHROUGH"
131419
+ | "REBASED_TO_CHANNEL_START";
131420
+
131186
131421
  export type MediaPackageV2OriginEndpoint_PresetSpeke20Audio =
131187
131422
  | "PRESET_AUDIO_1"
131188
131423
  | "PRESET_AUDIO_2"
@@ -131300,25 +131535,6 @@ export type MonitoringSchedule_MonitoringType =
131300
131535
  | "ModelExplainability"
131301
131536
  | "ModelQuality";
131302
131537
 
131303
- export type MSKChannel_ChannelStatus =
131304
- | "ACTIVE"
131305
- | "CREATING"
131306
- | "DELETING"
131307
- | "FAILED"
131308
- | "SUSPENDED"
131309
- | "SUSPENDING"
131310
- | "UPDATING";
131311
-
131312
- export type MSKChannel_IcebergCompressionType = "SNAPPY" | "ZSTD";
131313
-
131314
- export type MSKChannel_PartitionStrategy = "TIME_HOUR";
131315
-
131316
- export type MSKChannel_S3CompressionType = "GZIP" | "NONE" | "ZSTD";
131317
-
131318
- export type MSKChannel_S3StorageClass = "GLACIER_IR" | "INTELLIGENT_TIERING" | "STANDARD";
131319
-
131320
- export type MSKChannel_ValueConverter = "BYTE_ARRAY" | "JSON" | "JSON_SCHEMA_GSR" | "STRING";
131321
-
131322
131538
  export type MSKCluster_NetworkType = "DUAL" | "IPV4";
131323
131539
 
131324
131540
  export type Multiplexprogram_PreferredChannelPipeline =
@@ -133620,19 +133836,6 @@ export type SageMakerDomain_MlTools =
133620
133836
  | "Projects"
133621
133837
  | "Training";
133622
133838
 
133623
- export type SageMakerSpace_AppType =
133624
- | "CodeEditor"
133625
- | "JupyterLab"
133626
- | "JupyterServer"
133627
- | "KernelGateway"
133628
- | "RSessionGateway"
133629
- | "RStudioServerPro"
133630
- | "TensorBoard";
133631
-
133632
- export type SageMakerSpace_RemoteAccess = "DISABLED" | "ENABLED";
133633
-
133634
- export type SageMakerSpace_SpaceManagedResources = "DISABLED" | "ENABLED";
133635
-
133636
133839
  export type SageMakerUserProfile_AppInstanceType =
133637
133840
  | "ml.c5.12xlarge"
133638
133841
  | "ml.c5.18xlarge"
@@ -134099,6 +134302,19 @@ export type SourceLocation_AccessType =
134099
134302
  | "S3_SIGV4"
134100
134303
  | "SECRETS_MANAGER_ACCESS_TOKEN";
134101
134304
 
134305
+ export type Space_AppType =
134306
+ | "CodeEditor"
134307
+ | "JupyterLab"
134308
+ | "JupyterServer"
134309
+ | "KernelGateway"
134310
+ | "RSessionGateway"
134311
+ | "RStudioServerPro"
134312
+ | "TensorBoard";
134313
+
134314
+ export type Space_RemoteAccess = "DISABLED" | "ENABLED";
134315
+
134316
+ export type Space_SpaceManagedResources = "DISABLED" | "ENABLED";
134317
+
134102
134318
  export type SqlHaStandbyDetectedInstance_HaStatus =
134103
134319
  | "active"
134104
134320
  | "invalid"