@awboost/cfntypes 0.100.69 → 0.100.71
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.
@@ -16279,32 +16279,23 @@ export type BatchJobDefinitionProps = {
|
|
16279
16279
|
ContainerProperties?: BatchJobDefinitionContainerProperties;
|
16280
16280
|
EcsProperties?: BatchJobDefinitionEcsProperties;
|
16281
16281
|
EksProperties?: BatchJobDefinitionEksProperties;
|
16282
|
+
/**
|
16283
|
+
* @maxLength `128`
|
16284
|
+
*/
|
16282
16285
|
JobDefinitionName?: string;
|
16283
16286
|
NodeProperties?: BatchJobDefinitionNodeProperties;
|
16284
|
-
Parameters?: Record<string,
|
16287
|
+
Parameters?: Record<string, string>;
|
16285
16288
|
PlatformCapabilities?: string[];
|
16286
16289
|
PropagateTags?: boolean;
|
16287
16290
|
RetryStrategy?: BatchJobDefinitionRetryStrategy;
|
16288
16291
|
SchedulingPriority?: number;
|
16289
|
-
|
16290
|
-
|
16292
|
+
/**
|
16293
|
+
* A key-value pair to associate with a resource.
|
16294
|
+
*/
|
16295
|
+
Tags?: Record<string, string>;
|
16296
|
+
Timeout?: BatchJobDefinitionJobTimeout;
|
16291
16297
|
Type: string;
|
16292
16298
|
};
|
16293
|
-
/**
|
16294
|
-
* Attribute type definition for `AWS::Batch::JobDefinition`.
|
16295
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#aws-resource-batch-jobdefinition-return-values}
|
16296
|
-
*/
|
16297
|
-
export type BatchJobDefinitionAttributes = {
|
16298
|
-
Id: string;
|
16299
|
-
};
|
16300
|
-
/**
|
16301
|
-
* Type definition for `AWS::Batch::JobDefinition.AuthorizationConfig`.
|
16302
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-authorizationconfig.html}
|
16303
|
-
*/
|
16304
|
-
export type BatchJobDefinitionAuthorizationConfig = {
|
16305
|
-
AccessPointId?: string;
|
16306
|
-
Iam?: string;
|
16307
|
-
};
|
16308
16299
|
/**
|
16309
16300
|
* Type definition for `AWS::Batch::JobDefinition.ContainerProperties`.
|
16310
16301
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html}
|
@@ -16314,14 +16305,15 @@ export type BatchJobDefinitionContainerProperties = {
|
|
16314
16305
|
Environment?: BatchJobDefinitionEnvironment[];
|
16315
16306
|
EphemeralStorage?: BatchJobDefinitionEphemeralStorage;
|
16316
16307
|
ExecutionRoleArn?: string;
|
16317
|
-
FargatePlatformConfiguration?:
|
16308
|
+
FargatePlatformConfiguration?: {
|
16309
|
+
PlatformVersion?: string;
|
16310
|
+
};
|
16318
16311
|
Image: string;
|
16319
|
-
InstanceType?: string;
|
16320
16312
|
JobRoleArn?: string;
|
16321
16313
|
LinuxParameters?: BatchJobDefinitionLinuxParameters;
|
16322
16314
|
LogConfiguration?: BatchJobDefinitionLogConfiguration;
|
16323
16315
|
Memory?: number;
|
16324
|
-
MountPoints?:
|
16316
|
+
MountPoints?: BatchJobDefinitionMountPoint[];
|
16325
16317
|
NetworkConfiguration?: BatchJobDefinitionNetworkConfiguration;
|
16326
16318
|
Privileged?: boolean;
|
16327
16319
|
ReadonlyRootFilesystem?: boolean;
|
@@ -16332,7 +16324,7 @@ export type BatchJobDefinitionContainerProperties = {
|
|
16332
16324
|
Ulimits?: BatchJobDefinitionUlimit[];
|
16333
16325
|
User?: string;
|
16334
16326
|
Vcpus?: number;
|
16335
|
-
Volumes?:
|
16327
|
+
Volumes?: BatchJobDefinitionVolume[];
|
16336
16328
|
};
|
16337
16329
|
/**
|
16338
16330
|
* Type definition for `AWS::Batch::JobDefinition.Device`.
|
@@ -16364,14 +16356,22 @@ export type BatchJobDefinitionEcsTaskProperties = {
|
|
16364
16356
|
PlatformVersion?: string;
|
16365
16357
|
RuntimePlatform?: BatchJobDefinitionRuntimePlatform;
|
16366
16358
|
TaskRoleArn?: string;
|
16367
|
-
Volumes?:
|
16359
|
+
Volumes?: BatchJobDefinitionVolume[];
|
16360
|
+
};
|
16361
|
+
/**
|
16362
|
+
* Type definition for `AWS::Batch::JobDefinition.EFSAuthorizationConfig`.
|
16363
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-efsauthorizationconfig.html}
|
16364
|
+
*/
|
16365
|
+
export type BatchJobDefinitionEFSAuthorizationConfig = {
|
16366
|
+
AccessPointId?: string;
|
16367
|
+
Iam?: string;
|
16368
16368
|
};
|
16369
16369
|
/**
|
16370
|
-
* Type definition for `AWS::Batch::JobDefinition.
|
16370
|
+
* Type definition for `AWS::Batch::JobDefinition.EFSVolumeConfiguration`.
|
16371
16371
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-efsvolumeconfiguration.html}
|
16372
16372
|
*/
|
16373
|
-
export type
|
16374
|
-
AuthorizationConfig?:
|
16373
|
+
export type BatchJobDefinitionEFSVolumeConfiguration = {
|
16374
|
+
AuthorizationConfig?: BatchJobDefinitionEFSAuthorizationConfig;
|
16375
16375
|
FileSystemId: string;
|
16376
16376
|
RootDirectory?: string;
|
16377
16377
|
TransitEncryption?: string;
|
@@ -16405,8 +16405,8 @@ export type BatchJobDefinitionEksContainerEnvironmentVariable = {
|
|
16405
16405
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ekscontainerresourcerequirements.html}
|
16406
16406
|
*/
|
16407
16407
|
export type BatchJobDefinitionEksContainerResourceRequirements = {
|
16408
|
-
Limits?: Record<string,
|
16409
|
-
Requests?: Record<string,
|
16408
|
+
Limits?: Record<string, string>;
|
16409
|
+
Requests?: Record<string, string>;
|
16410
16410
|
};
|
16411
16411
|
/**
|
16412
16412
|
* Type definition for `AWS::Batch::JobDefinition.EksContainerSecurityContext`.
|
@@ -16444,12 +16444,34 @@ export type BatchJobDefinitionEksEmptyDir = {
|
|
16444
16444
|
export type BatchJobDefinitionEksHostPath = {
|
16445
16445
|
Path?: string;
|
16446
16446
|
};
|
16447
|
+
/**
|
16448
|
+
* Type definition for `AWS::Batch::JobDefinition.EksMetadata`.
|
16449
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-eksmetadata.html}
|
16450
|
+
*/
|
16451
|
+
export type BatchJobDefinitionEksMetadata = {
|
16452
|
+
Labels?: Record<string, string>;
|
16453
|
+
};
|
16454
|
+
/**
|
16455
|
+
* Type definition for `AWS::Batch::JobDefinition.EksPodProperties`.
|
16456
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ekspodproperties.html}
|
16457
|
+
*/
|
16458
|
+
export type BatchJobDefinitionEksPodProperties = {
|
16459
|
+
Containers?: BatchJobDefinitionEksContainer[];
|
16460
|
+
DnsPolicy?: string;
|
16461
|
+
HostNetwork?: boolean;
|
16462
|
+
ImagePullSecrets?: BatchJobDefinitionImagePullSecret[];
|
16463
|
+
InitContainers?: BatchJobDefinitionEksContainer[];
|
16464
|
+
Metadata?: BatchJobDefinitionEksMetadata;
|
16465
|
+
ServiceAccountName?: string;
|
16466
|
+
ShareProcessNamespace?: boolean;
|
16467
|
+
Volumes?: BatchJobDefinitionEksVolume[];
|
16468
|
+
};
|
16447
16469
|
/**
|
16448
16470
|
* Type definition for `AWS::Batch::JobDefinition.EksProperties`.
|
16449
16471
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-eksproperties.html}
|
16450
16472
|
*/
|
16451
16473
|
export type BatchJobDefinitionEksProperties = {
|
16452
|
-
PodProperties?:
|
16474
|
+
PodProperties?: BatchJobDefinitionEksPodProperties;
|
16453
16475
|
};
|
16454
16476
|
/**
|
16455
16477
|
* Type definition for `AWS::Batch::JobDefinition.EksSecret`.
|
@@ -16495,18 +16517,25 @@ export type BatchJobDefinitionEvaluateOnExit = {
|
|
16495
16517
|
OnStatusReason?: string;
|
16496
16518
|
};
|
16497
16519
|
/**
|
16498
|
-
* Type definition for `AWS::Batch::JobDefinition.
|
16499
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-
|
16520
|
+
* Type definition for `AWS::Batch::JobDefinition.Host`.
|
16521
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-host.html}
|
16500
16522
|
*/
|
16501
|
-
export type
|
16502
|
-
|
16523
|
+
export type BatchJobDefinitionHost = {
|
16524
|
+
SourcePath?: string;
|
16503
16525
|
};
|
16504
16526
|
/**
|
16505
16527
|
* Type definition for `AWS::Batch::JobDefinition.ImagePullSecret`.
|
16506
16528
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-imagepullsecret.html}
|
16507
16529
|
*/
|
16508
16530
|
export type BatchJobDefinitionImagePullSecret = {
|
16509
|
-
Name
|
16531
|
+
Name?: string;
|
16532
|
+
};
|
16533
|
+
/**
|
16534
|
+
* Type definition for `AWS::Batch::JobDefinition.JobTimeout`.
|
16535
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-jobtimeout.html}
|
16536
|
+
*/
|
16537
|
+
export type BatchJobDefinitionJobTimeout = {
|
16538
|
+
AttemptDurationSeconds?: number;
|
16510
16539
|
};
|
16511
16540
|
/**
|
16512
16541
|
* Type definition for `AWS::Batch::JobDefinition.LinuxParameters`.
|
@@ -16526,25 +16555,64 @@ export type BatchJobDefinitionLinuxParameters = {
|
|
16526
16555
|
*/
|
16527
16556
|
export type BatchJobDefinitionLogConfiguration = {
|
16528
16557
|
LogDriver: string;
|
16529
|
-
Options?: Record<string,
|
16558
|
+
Options?: Record<string, string>;
|
16530
16559
|
SecretOptions?: BatchJobDefinitionSecret[];
|
16531
16560
|
};
|
16532
16561
|
/**
|
16533
|
-
* Type definition for `AWS::Batch::JobDefinition.
|
16534
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-
|
16535
|
-
*/
|
16536
|
-
export type BatchJobDefinitionMetadata = {
|
16537
|
-
Labels?: Record<string, any>;
|
16538
|
-
};
|
16539
|
-
/**
|
16540
|
-
* Type definition for `AWS::Batch::JobDefinition.MountPoints`.
|
16541
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-mountpoints.html}
|
16562
|
+
* Type definition for `AWS::Batch::JobDefinition.MountPoint`.
|
16563
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-mountpoint.html}
|
16542
16564
|
*/
|
16543
|
-
export type
|
16565
|
+
export type BatchJobDefinitionMountPoint = {
|
16544
16566
|
ContainerPath?: string;
|
16545
16567
|
ReadOnly?: boolean;
|
16546
16568
|
SourceVolume?: string;
|
16547
16569
|
};
|
16570
|
+
/**
|
16571
|
+
* Type definition for `AWS::Batch::JobDefinition.MultiNodeContainerProperties`.
|
16572
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-multinodecontainerproperties.html}
|
16573
|
+
*/
|
16574
|
+
export type BatchJobDefinitionMultiNodeContainerProperties = {
|
16575
|
+
Command?: string[];
|
16576
|
+
Environment?: BatchJobDefinitionEnvironment[];
|
16577
|
+
EphemeralStorage?: BatchJobDefinitionEphemeralStorage;
|
16578
|
+
ExecutionRoleArn?: string;
|
16579
|
+
Image: string;
|
16580
|
+
InstanceType?: string;
|
16581
|
+
JobRoleArn?: string;
|
16582
|
+
LinuxParameters?: BatchJobDefinitionLinuxParameters;
|
16583
|
+
LogConfiguration?: BatchJobDefinitionLogConfiguration;
|
16584
|
+
Memory?: number;
|
16585
|
+
MountPoints?: BatchJobDefinitionMountPoint[];
|
16586
|
+
Privileged?: boolean;
|
16587
|
+
ReadonlyRootFilesystem?: boolean;
|
16588
|
+
RepositoryCredentials?: BatchJobDefinitionRepositoryCredentials;
|
16589
|
+
ResourceRequirements?: BatchJobDefinitionResourceRequirement[];
|
16590
|
+
RuntimePlatform?: BatchJobDefinitionRuntimePlatform;
|
16591
|
+
Secrets?: BatchJobDefinitionSecret[];
|
16592
|
+
Ulimits?: BatchJobDefinitionUlimit[];
|
16593
|
+
User?: string;
|
16594
|
+
Vcpus?: number;
|
16595
|
+
Volumes?: BatchJobDefinitionVolume[];
|
16596
|
+
};
|
16597
|
+
/**
|
16598
|
+
* Type definition for `AWS::Batch::JobDefinition.MultiNodeEcsProperties`.
|
16599
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-multinodeecsproperties.html}
|
16600
|
+
*/
|
16601
|
+
export type BatchJobDefinitionMultiNodeEcsProperties = {
|
16602
|
+
TaskProperties: BatchJobDefinitionMultiNodeEcsTaskProperties[];
|
16603
|
+
};
|
16604
|
+
/**
|
16605
|
+
* Type definition for `AWS::Batch::JobDefinition.MultiNodeEcsTaskProperties`.
|
16606
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-multinodeecstaskproperties.html}
|
16607
|
+
*/
|
16608
|
+
export type BatchJobDefinitionMultiNodeEcsTaskProperties = {
|
16609
|
+
Containers?: BatchJobDefinitionTaskContainerProperties[];
|
16610
|
+
ExecutionRoleArn?: string;
|
16611
|
+
IpcMode?: string;
|
16612
|
+
PidMode?: string;
|
16613
|
+
TaskRoleArn?: string;
|
16614
|
+
Volumes?: BatchJobDefinitionVolume[];
|
16615
|
+
};
|
16548
16616
|
/**
|
16549
16617
|
* Type definition for `AWS::Batch::JobDefinition.NetworkConfiguration`.
|
16550
16618
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-networkconfiguration.html}
|
@@ -16566,27 +16634,12 @@ export type BatchJobDefinitionNodeProperties = {
|
|
16566
16634
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-noderangeproperty.html}
|
16567
16635
|
*/
|
16568
16636
|
export type BatchJobDefinitionNodeRangeProperty = {
|
16569
|
-
Container?:
|
16570
|
-
EcsProperties?:
|
16637
|
+
Container?: BatchJobDefinitionMultiNodeContainerProperties;
|
16638
|
+
EcsProperties?: BatchJobDefinitionMultiNodeEcsProperties;
|
16571
16639
|
EksProperties?: BatchJobDefinitionEksProperties;
|
16572
16640
|
InstanceTypes?: string[];
|
16573
16641
|
TargetNodes: string;
|
16574
16642
|
};
|
16575
|
-
/**
|
16576
|
-
* Type definition for `AWS::Batch::JobDefinition.PodProperties`.
|
16577
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-podproperties.html}
|
16578
|
-
*/
|
16579
|
-
export type BatchJobDefinitionPodProperties = {
|
16580
|
-
Containers?: BatchJobDefinitionEksContainer[];
|
16581
|
-
DnsPolicy?: string;
|
16582
|
-
HostNetwork?: boolean;
|
16583
|
-
ImagePullSecrets?: BatchJobDefinitionImagePullSecret[];
|
16584
|
-
InitContainers?: BatchJobDefinitionEksContainer[];
|
16585
|
-
Metadata?: BatchJobDefinitionMetadata;
|
16586
|
-
ServiceAccountName?: string;
|
16587
|
-
ShareProcessNamespace?: boolean;
|
16588
|
-
Volumes?: BatchJobDefinitionEksVolume[];
|
16589
|
-
};
|
16590
16643
|
/**
|
16591
16644
|
* Type definition for `AWS::Batch::JobDefinition.RepositoryCredentials`.
|
16592
16645
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-repositorycredentials.html}
|
@@ -16646,7 +16699,7 @@ export type BatchJobDefinitionTaskContainerProperties = {
|
|
16646
16699
|
Image: string;
|
16647
16700
|
LinuxParameters?: BatchJobDefinitionLinuxParameters;
|
16648
16701
|
LogConfiguration?: BatchJobDefinitionLogConfiguration;
|
16649
|
-
MountPoints?:
|
16702
|
+
MountPoints?: BatchJobDefinitionMountPoint[];
|
16650
16703
|
Name?: string;
|
16651
16704
|
Privileged?: boolean;
|
16652
16705
|
ReadonlyRootFilesystem?: boolean;
|
@@ -16656,13 +16709,6 @@ export type BatchJobDefinitionTaskContainerProperties = {
|
|
16656
16709
|
Ulimits?: BatchJobDefinitionUlimit[];
|
16657
16710
|
User?: string;
|
16658
16711
|
};
|
16659
|
-
/**
|
16660
|
-
* Type definition for `AWS::Batch::JobDefinition.Timeout`.
|
16661
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-timeout.html}
|
16662
|
-
*/
|
16663
|
-
export type BatchJobDefinitionTimeout = {
|
16664
|
-
AttemptDurationSeconds?: number;
|
16665
|
-
};
|
16666
16712
|
/**
|
16667
16713
|
* Type definition for `AWS::Batch::JobDefinition.Tmpfs`.
|
16668
16714
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-tmpfs.html}
|
@@ -16682,21 +16728,14 @@ export type BatchJobDefinitionUlimit = {
|
|
16682
16728
|
SoftLimit: number;
|
16683
16729
|
};
|
16684
16730
|
/**
|
16685
|
-
* Type definition for `AWS::Batch::JobDefinition.
|
16686
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-
|
16731
|
+
* Type definition for `AWS::Batch::JobDefinition.Volume`.
|
16732
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-volume.html}
|
16687
16733
|
*/
|
16688
|
-
export type
|
16689
|
-
EfsVolumeConfiguration?:
|
16690
|
-
Host?:
|
16734
|
+
export type BatchJobDefinitionVolume = {
|
16735
|
+
EfsVolumeConfiguration?: BatchJobDefinitionEFSVolumeConfiguration;
|
16736
|
+
Host?: BatchJobDefinitionHost;
|
16691
16737
|
Name?: string;
|
16692
16738
|
};
|
16693
|
-
/**
|
16694
|
-
* Type definition for `AWS::Batch::JobDefinition.VolumesHost`.
|
16695
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-volumeshost.html}
|
16696
|
-
*/
|
16697
|
-
export type BatchJobDefinitionVolumesHost = {
|
16698
|
-
SourcePath?: string;
|
16699
|
-
};
|
16700
16739
|
/**
|
16701
16740
|
* Resource Type definition for AWS::Batch::JobQueue
|
16702
16741
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html}
|
@@ -25884,6 +25923,7 @@ export type CloudFrontDistributionCacheBehavior = {
|
|
25884
25923
|
* A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the ``LIVE`` stage to associate them with a cache behavior.
|
25885
25924
|
*/
|
25886
25925
|
FunctionAssociations?: CloudFrontDistributionFunctionAssociation[];
|
25926
|
+
GrpcConfig?: CloudFrontDistributionGrpcConfig;
|
25887
25927
|
/**
|
25888
25928
|
* A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.
|
25889
25929
|
*/
|
@@ -26103,6 +26143,7 @@ export type CloudFrontDistributionDefaultCacheBehavior = {
|
|
26103
26143
|
* A list of CloudFront functions that are associated with this cache behavior. Your functions must be published to the ``LIVE`` stage to associate them with a cache behavior.
|
26104
26144
|
*/
|
26105
26145
|
FunctionAssociations?: CloudFrontDistributionFunctionAssociation[];
|
26146
|
+
GrpcConfig?: CloudFrontDistributionGrpcConfig;
|
26106
26147
|
/**
|
26107
26148
|
* A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.
|
26108
26149
|
*/
|
@@ -26356,6 +26397,13 @@ export type CloudFrontDistributionGeoRestriction = {
|
|
26356
26397
|
*/
|
26357
26398
|
RestrictionType: string;
|
26358
26399
|
};
|
26400
|
+
/**
|
26401
|
+
* Type definition for `AWS::CloudFront::Distribution.GrpcConfig`.
|
26402
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-grpcconfig.html}
|
26403
|
+
*/
|
26404
|
+
export type CloudFrontDistributionGrpcConfig = {
|
26405
|
+
Enabled: boolean;
|
26406
|
+
};
|
26359
26407
|
/**
|
26360
26408
|
* Type definition for `AWS::CloudFront::Distribution.LambdaFunctionAssociation`.
|
26361
26409
|
* A complex type that contains a Lambda@Edge function association.
|
@@ -26435,7 +26483,7 @@ export type CloudFrontDistributionLogging = {
|
|
26435
26483
|
/**
|
26436
26484
|
* The Amazon S3 bucket to store the access logs in, for example, ``myawslogbucket.s3.amazonaws.com``.
|
26437
26485
|
*/
|
26438
|
-
Bucket
|
26486
|
+
Bucket?: string;
|
26439
26487
|
/**
|
26440
26488
|
* Specifies whether you want CloudFront to include cookies in access logs, specify ``true`` for ``IncludeCookies``. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify ``false`` for ``IncludeCookies``.
|
26441
26489
|
*/
|
@@ -26545,6 +26593,7 @@ export type CloudFrontDistributionOriginGroup = {
|
|
26545
26593
|
* A complex type that contains information about the origins in an origin group.
|
26546
26594
|
*/
|
26547
26595
|
Members: CloudFrontDistributionOriginGroupMembers;
|
26596
|
+
SelectionCriteria?: CloudFrontDistributionOriginGroupSelectionCriteria;
|
26548
26597
|
};
|
26549
26598
|
/**
|
26550
26599
|
* Type definition for `AWS::CloudFront::Distribution.OriginGroupFailoverCriteria`.
|
@@ -26598,6 +26647,11 @@ export type CloudFrontDistributionOriginGroups = {
|
|
26598
26647
|
*/
|
26599
26648
|
Quantity: number;
|
26600
26649
|
};
|
26650
|
+
/**
|
26651
|
+
* Type definition for `AWS::CloudFront::Distribution.OriginGroupSelectionCriteria`.
|
26652
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroupselectioncriteria.html}
|
26653
|
+
*/
|
26654
|
+
export type CloudFrontDistributionOriginGroupSelectionCriteria = "default" | "media-quality-based";
|
26601
26655
|
/**
|
26602
26656
|
* Type definition for `AWS::CloudFront::Distribution.OriginShield`.
|
26603
26657
|
* CloudFront Origin Shield.
|
@@ -34782,16 +34836,16 @@ export type ConnectRoutingProfileTag = {
|
|
34782
34836
|
};
|
34783
34837
|
/**
|
34784
34838
|
* Resource type definition for `AWS::Connect::Rule`.
|
34785
|
-
*
|
34839
|
+
* Creates a rule for the specified CON instance.
|
34786
34840
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-rule.html}
|
34787
34841
|
*/
|
34788
34842
|
export type ConnectRuleProps = {
|
34789
34843
|
/**
|
34790
|
-
*
|
34844
|
+
* A list of actions to be run when the rule is triggered.
|
34791
34845
|
*/
|
34792
34846
|
Actions: ConnectRuleActions;
|
34793
34847
|
/**
|
34794
|
-
* The conditions of
|
34848
|
+
* The conditions of the rule.
|
34795
34849
|
*/
|
34796
34850
|
Function: string;
|
34797
34851
|
/**
|
@@ -34805,16 +34859,17 @@ export type ConnectRuleProps = {
|
|
34805
34859
|
*/
|
34806
34860
|
Name: string;
|
34807
34861
|
/**
|
34808
|
-
* The publish status of
|
34862
|
+
* The publish status of the rule.
|
34863
|
+
*Allowed values*: ``DRAFT`` | ``PUBLISHED``
|
34809
34864
|
*/
|
34810
34865
|
PublishStatus: "DRAFT" | "PUBLISHED";
|
34811
34866
|
/**
|
34812
|
-
*
|
34867
|
+
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
34813
34868
|
* @maxLength `50`
|
34814
34869
|
*/
|
34815
34870
|
Tags?: ConnectRuleTag[];
|
34816
34871
|
/**
|
34817
|
-
* The event source
|
34872
|
+
* The event source to trigger the rule.
|
34818
34873
|
*/
|
34819
34874
|
TriggerEventSource: ConnectRuleRuleTriggerEventSource;
|
34820
34875
|
};
|
@@ -34824,19 +34879,18 @@ export type ConnectRuleProps = {
|
|
34824
34879
|
*/
|
34825
34880
|
export type ConnectRuleAttributes = {
|
34826
34881
|
/**
|
34827
|
-
* The Amazon Resource Name (ARN) of the rule.
|
34828
34882
|
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*rule/[-a-zA-Z0-9]*$`
|
34829
34883
|
*/
|
34830
34884
|
RuleArn: string;
|
34831
34885
|
};
|
34832
34886
|
/**
|
34833
34887
|
* Type definition for `AWS::Connect::Rule.Actions`.
|
34834
|
-
*
|
34888
|
+
* A list of actions to be run when the rule is triggered.
|
34835
34889
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-actions.html}
|
34836
34890
|
*/
|
34837
34891
|
export type ConnectRuleActions = {
|
34838
34892
|
/**
|
34839
|
-
*
|
34893
|
+
* Information about the contact category action. The syntax can be empty, for example, ``{}``.
|
34840
34894
|
* @minLength `1`
|
34841
34895
|
* @maxLength `1`
|
34842
34896
|
*/
|
@@ -34854,13 +34908,13 @@ export type ConnectRuleActions = {
|
|
34854
34908
|
*/
|
34855
34909
|
EndAssociatedTasksActions?: ConnectRuleEndAssociatedTasksAction[];
|
34856
34910
|
/**
|
34857
|
-
*
|
34911
|
+
* Information about the EV action.
|
34858
34912
|
* @minLength `1`
|
34859
34913
|
* @maxLength `1`
|
34860
34914
|
*/
|
34861
34915
|
EventBridgeActions?: ConnectRuleEventBridgeAction[];
|
34862
34916
|
/**
|
34863
|
-
*
|
34917
|
+
* Information about the send notification action.
|
34864
34918
|
* @minLength `1`
|
34865
34919
|
* @maxLength `1`
|
34866
34920
|
*/
|
@@ -34872,7 +34926,7 @@ export type ConnectRuleActions = {
|
|
34872
34926
|
*/
|
34873
34927
|
SubmitAutoEvaluationActions?: ConnectRuleSubmitAutoEvaluationAction[];
|
34874
34928
|
/**
|
34875
|
-
*
|
34929
|
+
* Information about the task action. This field is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate``
|
34876
34930
|
* @minLength `1`
|
34877
34931
|
* @maxLength `1`
|
34878
34932
|
*/
|
@@ -34892,7 +34946,6 @@ export type ConnectRuleActions = {
|
|
34892
34946
|
export type ConnectRuleAssignContactCategoryAction = Record<string, any>;
|
34893
34947
|
/**
|
34894
34948
|
* Type definition for `AWS::Connect::Rule.CreateCaseAction`.
|
34895
|
-
* The definition for create case action.
|
34896
34949
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-createcaseaction.html}
|
34897
34950
|
*/
|
34898
34951
|
export type ConnectRuleCreateCaseAction = {
|
@@ -34903,7 +34956,6 @@ export type ConnectRuleCreateCaseAction = {
|
|
34903
34956
|
*/
|
34904
34957
|
Fields: ConnectRuleField[];
|
34905
34958
|
/**
|
34906
|
-
* The Id of template.
|
34907
34959
|
* @minLength `1`
|
34908
34960
|
* @maxLength `500`
|
34909
34961
|
*/
|
@@ -34917,36 +34969,34 @@ export type ConnectRuleCreateCaseAction = {
|
|
34917
34969
|
export type ConnectRuleEndAssociatedTasksAction = Record<string, any>;
|
34918
34970
|
/**
|
34919
34971
|
* Type definition for `AWS::Connect::Rule.EventBridgeAction`.
|
34920
|
-
* The
|
34972
|
+
* The EV action definition.
|
34921
34973
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-eventbridgeaction.html}
|
34922
34974
|
*/
|
34923
34975
|
export type ConnectRuleEventBridgeAction = {
|
34924
34976
|
/**
|
34925
|
-
* The name
|
34977
|
+
* The name.
|
34926
34978
|
* @pattern `^[a-zA-Z0-9._-]{1,100}$`
|
34927
34979
|
*/
|
34928
34980
|
Name: string;
|
34929
34981
|
};
|
34930
34982
|
/**
|
34931
34983
|
* Type definition for `AWS::Connect::Rule.Field`.
|
34932
|
-
* The field of the case.
|
34933
34984
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-field.html}
|
34934
34985
|
*/
|
34935
34986
|
export type ConnectRuleField = {
|
34936
34987
|
/**
|
34937
|
-
* The Id of the field
|
34938
34988
|
* @minLength `1`
|
34939
34989
|
* @maxLength `500`
|
34940
34990
|
*/
|
34941
34991
|
Id: string;
|
34942
34992
|
/**
|
34943
|
-
*
|
34993
|
+
* Object for case field values.
|
34944
34994
|
*/
|
34945
34995
|
Value: ConnectRuleFieldValue;
|
34946
34996
|
};
|
34947
34997
|
/**
|
34948
34998
|
* Type definition for `AWS::Connect::Rule.FieldValue`.
|
34949
|
-
*
|
34999
|
+
* Object for case field values.
|
34950
35000
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-fieldvalue.html}
|
34951
35001
|
*/
|
34952
35002
|
export type ConnectRuleFieldValue = {
|
@@ -34962,70 +35012,77 @@ export type ConnectRuleFieldValue = {
|
|
34962
35012
|
*/
|
34963
35013
|
export type ConnectRuleNotificationRecipientType = {
|
34964
35014
|
/**
|
34965
|
-
* The
|
35015
|
+
* The Amazon Resource Name (ARN) of the user account.
|
34966
35016
|
* @minLength `1`
|
34967
35017
|
* @maxLength `5`
|
34968
35018
|
*/
|
34969
35019
|
UserArns?: string[];
|
34970
35020
|
/**
|
34971
|
-
* The
|
35021
|
+
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }. CON users with the specified tags will be notified.
|
34972
35022
|
*/
|
34973
35023
|
UserTags?: Record<string, string>;
|
34974
35024
|
};
|
34975
35025
|
/**
|
34976
35026
|
* Type definition for `AWS::Connect::Rule.Reference`.
|
34977
|
-
*
|
35027
|
+
* Information about the reference when the ``referenceType`` is ``URL``. Otherwise, null. (Supports variable injection in the ``Value`` field.)
|
34978
35028
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-reference.html}
|
34979
35029
|
*/
|
34980
35030
|
export type ConnectRuleReference = {
|
35031
|
+
/**
|
35032
|
+
* The type of the reference. ``DATE`` must be of type Epoch timestamp.
|
35033
|
+
*Allowed values*: ``URL`` | ``ATTACHMENT`` | ``NUMBER`` | ``STRING`` | ``DATE`` | ``EMAIL``
|
35034
|
+
*/
|
34981
35035
|
Type: "URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL";
|
34982
35036
|
/**
|
35037
|
+
* A valid value for the reference. For example, for a URL reference, a formatted URL that is displayed to an agent in the Contact Control Panel (CCP).
|
34983
35038
|
* @pattern `^(/|https:)`
|
34984
35039
|
*/
|
34985
35040
|
Value: string;
|
34986
35041
|
};
|
34987
35042
|
/**
|
34988
35043
|
* Type definition for `AWS::Connect::Rule.RuleTriggerEventSource`.
|
34989
|
-
* The
|
35044
|
+
* The name of the event source.
|
34990
35045
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-ruletriggereventsource.html}
|
34991
35046
|
*/
|
34992
35047
|
export type ConnectRuleRuleTriggerEventSource = {
|
34993
35048
|
/**
|
34994
|
-
* The name of event source.
|
35049
|
+
* The name of the event source.
|
34995
35050
|
*/
|
34996
35051
|
EventSourceName: "OnContactEvaluationSubmit" | "OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate";
|
34997
35052
|
/**
|
34998
|
-
* The Amazon Resource Name (ARN)
|
35053
|
+
* The Amazon Resource Name (ARN) of the integration association. ``IntegrationAssociationArn`` is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate``
|
34999
35054
|
* @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*integration-association/[-a-zA-Z0-9]*$`
|
35000
35055
|
*/
|
35001
35056
|
IntegrationAssociationArn?: string;
|
35002
35057
|
};
|
35003
35058
|
/**
|
35004
35059
|
* Type definition for `AWS::Connect::Rule.SendNotificationAction`.
|
35005
|
-
*
|
35060
|
+
* Information about the send notification action.
|
35006
35061
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-sendnotificationaction.html}
|
35007
35062
|
*/
|
35008
35063
|
export type ConnectRuleSendNotificationAction = {
|
35009
35064
|
/**
|
35010
|
-
*
|
35065
|
+
* Notification content. Supports variable injection. For more information, see [JSONPath reference](https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-variable-injection.html) in the *Administrators Guide*.
|
35011
35066
|
* @minLength `1`
|
35012
35067
|
* @maxLength `1024`
|
35013
35068
|
*/
|
35014
35069
|
Content: string;
|
35015
35070
|
/**
|
35016
|
-
*
|
35071
|
+
* Content type format.
|
35072
|
+
*Allowed value*: ``PLAIN_TEXT``
|
35017
35073
|
*/
|
35018
35074
|
ContentType: "PLAIN_TEXT";
|
35019
35075
|
/**
|
35020
|
-
*
|
35076
|
+
* Notification delivery method.
|
35077
|
+
*Allowed value*: ``EMAIL``
|
35021
35078
|
*/
|
35022
35079
|
DeliveryMethod: "EMAIL";
|
35023
35080
|
/**
|
35024
|
-
*
|
35081
|
+
* Notification recipient.
|
35025
35082
|
*/
|
35026
35083
|
Recipient: ConnectRuleNotificationRecipientType;
|
35027
35084
|
/**
|
35028
|
-
* The subject of
|
35085
|
+
* The subject of the email if the delivery method is ``EMAIL``. Supports variable injection. For more information, see [JSONPath reference](https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-variable-injection.html) in the *Administrators Guide*.
|
35029
35086
|
* @minLength `1`
|
35030
35087
|
* @maxLength `200`
|
35031
35088
|
*/
|
@@ -35033,12 +35090,10 @@ export type ConnectRuleSendNotificationAction = {
|
|
35033
35090
|
};
|
35034
35091
|
/**
|
35035
35092
|
* Type definition for `AWS::Connect::Rule.SubmitAutoEvaluationAction`.
|
35036
|
-
* The definition of submit auto evaluation action.
|
35037
35093
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-submitautoevaluationaction.html}
|
35038
35094
|
*/
|
35039
35095
|
export type ConnectRuleSubmitAutoEvaluationAction = {
|
35040
35096
|
/**
|
35041
|
-
* The Amazon Resource Name (ARN) of the evaluation form.
|
35042
35097
|
* @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*evaluation-form/[-a-zA-Z0-9]*$`
|
35043
35098
|
*/
|
35044
35099
|
EvaluationFormArn: string;
|
@@ -35050,49 +35105,48 @@ export type ConnectRuleSubmitAutoEvaluationAction = {
|
|
35050
35105
|
*/
|
35051
35106
|
export type ConnectRuleTag = {
|
35052
35107
|
/**
|
35053
|
-
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and
|
35108
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -
|
35054
35109
|
* @minLength `1`
|
35055
35110
|
* @maxLength `128`
|
35056
35111
|
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
35057
35112
|
*/
|
35058
35113
|
Key: string;
|
35059
35114
|
/**
|
35060
|
-
* The value for the tag. You can specify a value that
|
35115
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -
|
35061
35116
|
* @maxLength `256`
|
35062
35117
|
*/
|
35063
35118
|
Value: string;
|
35064
35119
|
};
|
35065
35120
|
/**
|
35066
35121
|
* Type definition for `AWS::Connect::Rule.TaskAction`.
|
35067
|
-
*
|
35122
|
+
* Information about the task action. This field is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate``
|
35068
35123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-taskaction.html}
|
35069
35124
|
*/
|
35070
35125
|
export type ConnectRuleTaskAction = {
|
35071
35126
|
/**
|
35072
|
-
* The Amazon Resource Name (ARN) of the
|
35127
|
+
* The Amazon Resource Name (ARN) of the flow.
|
35073
35128
|
* @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*contact-flow/[-a-zA-Z0-9]*$`
|
35074
35129
|
*/
|
35075
35130
|
ContactFlowArn: string;
|
35076
35131
|
/**
|
35077
|
-
* The description
|
35132
|
+
* The description. Supports variable injection. For more information, see [JSONPath reference](https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-variable-injection.html) in the *Administrators Guide*.
|
35078
35133
|
* @minLength `0`
|
35079
35134
|
* @maxLength `4096`
|
35080
35135
|
*/
|
35081
35136
|
Description?: string;
|
35082
35137
|
/**
|
35083
|
-
* The name
|
35138
|
+
* The name. Supports variable injection. For more information, see [JSONPath reference](https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-variable-injection.html) in the *Administrators Guide*.
|
35084
35139
|
* @minLength `1`
|
35085
35140
|
* @maxLength `512`
|
35086
35141
|
*/
|
35087
35142
|
Name: string;
|
35088
35143
|
/**
|
35089
|
-
*
|
35144
|
+
* Information about the reference when the ``referenceType`` is ``URL``. Otherwise, null. ``URL`` is the only accepted type. (Supports variable injection in the ``Value`` field.)
|
35090
35145
|
*/
|
35091
35146
|
References?: Record<string, ConnectRuleReference>;
|
35092
35147
|
};
|
35093
35148
|
/**
|
35094
35149
|
* Type definition for `AWS::Connect::Rule.UpdateCaseAction`.
|
35095
|
-
* The definition for update case action.
|
35096
35150
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-updatecaseaction.html}
|
35097
35151
|
*/
|
35098
35152
|
export type ConnectRuleUpdateCaseAction = {
|
@@ -36258,7 +36312,7 @@ export type ConnectCampaignsV2CampaignProps = {
|
|
36258
36312
|
*/
|
36259
36313
|
Schedule?: ConnectCampaignsV2CampaignSchedule;
|
36260
36314
|
/**
|
36261
|
-
* The possible
|
36315
|
+
* The possible source of the campaign
|
36262
36316
|
*/
|
36263
36317
|
Source?: ConnectCampaignsV2CampaignSource;
|
36264
36318
|
/**
|
@@ -36470,6 +36524,20 @@ export type ConnectCampaignsV2CampaignEmailOutboundMode = {
|
|
36470
36524
|
*/
|
36471
36525
|
AgentlessConfig?: ConnectCampaignsV2CampaignAgentlessConfig;
|
36472
36526
|
};
|
36527
|
+
/**
|
36528
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.EventTrigger`.
|
36529
|
+
* The event trigger of the campaign
|
36530
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-eventtrigger.html}
|
36531
|
+
*/
|
36532
|
+
export type ConnectCampaignsV2CampaignEventTrigger = {
|
36533
|
+
/**
|
36534
|
+
* Arn
|
36535
|
+
* @minLength `20`
|
36536
|
+
* @maxLength `500`
|
36537
|
+
* @pattern `^arn:.*$`
|
36538
|
+
*/
|
36539
|
+
CustomerProfilesDomainArn?: string;
|
36540
|
+
};
|
36473
36541
|
/**
|
36474
36542
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.LocalTimeZoneConfig`.
|
36475
36543
|
* Local time zone config
|
@@ -36640,7 +36708,7 @@ export type ConnectCampaignsV2CampaignSmsOutboundMode = {
|
|
36640
36708
|
};
|
36641
36709
|
/**
|
36642
36710
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.Source`.
|
36643
|
-
* The possible
|
36711
|
+
* The possible source of the campaign
|
36644
36712
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-source.html}
|
36645
36713
|
*/
|
36646
36714
|
export type ConnectCampaignsV2CampaignSource = {
|
@@ -36651,6 +36719,10 @@ export type ConnectCampaignsV2CampaignSource = {
|
|
36651
36719
|
* @pattern `^arn:.*$`
|
36652
36720
|
*/
|
36653
36721
|
CustomerProfilesSegmentArn?: string;
|
36722
|
+
/**
|
36723
|
+
* The event trigger of the campaign
|
36724
|
+
*/
|
36725
|
+
EventTrigger?: ConnectCampaignsV2CampaignEventTrigger;
|
36654
36726
|
};
|
36655
36727
|
/**
|
36656
36728
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.Tag`.
|
@@ -46765,7 +46837,7 @@ export type EC2CustomerGatewayProps = {
|
|
46765
46837
|
BgpAsnExtended?: number;
|
46766
46838
|
/**
|
46767
46839
|
* The Amazon Resource Name (ARN) for the customer gateway certificate.
|
46768
|
-
* @pattern `^arn:(aws[a-zA-Z-]*)?:acm:[a-z]{2}((-gov)|(-iso(
|
46840
|
+
* @pattern `^arn:(aws[a-zA-Z-]*)?:acm:[a-z]{2}((-gov)|(-iso([a-z]{1})?))?-[a-z]+-\d{1}:\d{12}:certificate\/[a-zA-Z0-9-_]+$`
|
46769
46841
|
*/
|
46770
46842
|
CertificateArn?: string;
|
46771
46843
|
/**
|
@@ -49295,6 +49367,7 @@ export type EC2LaunchTemplateLaunchTemplateData = {
|
|
49295
49367
|
* The network interfaces for the instance.
|
49296
49368
|
*/
|
49297
49369
|
NetworkInterfaces?: EC2LaunchTemplateNetworkInterface[];
|
49370
|
+
NetworkPerformanceOptions?: unknown;
|
49298
49371
|
/**
|
49299
49372
|
* The placement for the instance.
|
49300
49373
|
*/
|
@@ -55708,6 +55781,10 @@ export type ECSPrimaryTaskSetProps = {
|
|
55708
55781
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html}
|
55709
55782
|
*/
|
55710
55783
|
export type ECSServiceProps = {
|
55784
|
+
/**
|
55785
|
+
* Indicates whether to use Availability Zone rebalancing for the service.
|
55786
|
+
For more information, see [Balancing an Amazon ECS service across Availability Zones](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html) in the *Amazon Elastic Container Service Developer Guide*.
|
55787
|
+
*/
|
55711
55788
|
AvailabilityZoneRebalancing?: "ENABLED" | "DISABLED";
|
55712
55789
|
/**
|
55713
55790
|
* The capacity provider strategy to use for the service.
|
@@ -55743,9 +55820,8 @@ export type ECSServiceProps = {
|
|
55743
55820
|
*/
|
55744
55821
|
EnableExecuteCommand?: boolean;
|
55745
55822
|
/**
|
55746
|
-
* The period of time, in seconds, that the Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing
|
55747
|
-
If you
|
55748
|
-
If your service's tasks take a while to start and respond to Elastic Load Balancing health checks, you can specify a health check grace period of up to 2,147,483,647 seconds (about 69 years). During that time, the Amazon ECS service scheduler ignores health check status. This grace period can prevent the service scheduler from marking tasks as unhealthy and stopping them before they have time to come up.
|
55823
|
+
* The period of time, in seconds, that the Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and container health checks after a task has first started. If you don't specify a health check grace period value, the default value of ``0`` is used. If you don't use any of the health checks, then ``healthCheckGracePeriodSeconds`` is unused.
|
55824
|
+
If your service's tasks take a while to start and respond to health checks, you can specify a health check grace period of up to 2,147,483,647 seconds (about 69 years). During that time, the Amazon ECS service scheduler ignores health check status. This grace period can prevent the service scheduler from marking tasks as unhealthy and stopping them before they have time to come up.
|
55749
55825
|
*/
|
55750
55826
|
HealthCheckGracePeriodSeconds?: number;
|
55751
55827
|
/**
|
@@ -55829,6 +55905,9 @@ export type ECSServiceProps = {
|
|
55829
55905
|
* The configuration for a volume specified in the task definition as a volume that is configured at launch time. Currently, the only supported volume type is an Amazon EBS volume.
|
55830
55906
|
*/
|
55831
55907
|
VolumeConfigurations?: ECSServiceServiceVolumeConfiguration[];
|
55908
|
+
/**
|
55909
|
+
* The VPC Lattice configuration for the service being created.
|
55910
|
+
*/
|
55832
55911
|
VpcLatticeConfigurations?: ECSServiceVpcLatticeConfiguration[];
|
55833
55912
|
};
|
55834
55913
|
/**
|
@@ -55846,7 +55925,7 @@ export type ECSServiceAttributes = {
|
|
55846
55925
|
*/
|
55847
55926
|
export type ECSServiceAwsVpcConfiguration = {
|
55848
55927
|
/**
|
55849
|
-
* Whether the task's elastic network interface receives a public IP address. The default value is ``
|
55928
|
+
* Whether the task's elastic network interface receives a public IP address. The default value is ``ENABLED``.
|
55850
55929
|
*/
|
55851
55930
|
AssignPublicIp?: "DISABLED" | "ENABLED";
|
55852
55931
|
/**
|
@@ -55966,7 +56045,7 @@ export type ECSServiceDeploymentConfiguration = {
|
|
55966
56045
|
};
|
55967
56046
|
/**
|
55968
56047
|
* Type definition for `AWS::ECS::Service.DeploymentController`.
|
55969
|
-
* The deployment controller to use for the service.
|
56048
|
+
* The deployment controller to use for the service.
|
55970
56049
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentcontroller.html}
|
55971
56050
|
*/
|
55972
56051
|
export type ECSServiceDeploymentController = {
|
@@ -56410,11 +56489,22 @@ export type ECSServiceTimeoutConfiguration = {
|
|
56410
56489
|
};
|
56411
56490
|
/**
|
56412
56491
|
* Type definition for `AWS::ECS::Service.VpcLatticeConfiguration`.
|
56492
|
+
* The VPC Lattice configuration for your service that holds the information for the target group(s) Amazon ECS tasks will be registered to.
|
56413
56493
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-vpclatticeconfiguration.html}
|
56414
56494
|
*/
|
56415
56495
|
export type ECSServiceVpcLatticeConfiguration = {
|
56496
|
+
/**
|
56497
|
+
* The name of the port mapping to register in the VPC Lattice target group. This is the name of the ``portMapping`` you defined in your task definition.
|
56498
|
+
*/
|
56416
56499
|
PortName: string;
|
56500
|
+
/**
|
56501
|
+
* The ARN of the IAM role to associate with this VPC Lattice configuration. This is the Amazon ECS
|
56502
|
+
infrastructure IAM role that is used to manage your VPC Lattice infrastructure.
|
56503
|
+
*/
|
56417
56504
|
RoleArn: string;
|
56505
|
+
/**
|
56506
|
+
* The full Amazon Resource Name (ARN) of the target group or groups associated with the VPC Lattice configuration that the Amazon ECS tasks will be registered to.
|
56507
|
+
*/
|
56418
56508
|
TargetGroupArn: string;
|
56419
56509
|
};
|
56420
56510
|
/**
|
@@ -56822,6 +56912,9 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
56822
56912
|
This parameter is not supported for Windows containers.
|
56823
56913
|
*/
|
56824
56914
|
User?: string;
|
56915
|
+
/**
|
56916
|
+
* Specifies whether Amazon ECS will resolve the container image tag provided in the container definition to an image digest. By default, the value is ``enabled``. If you set the value for a container as ``disabled``, Amazon ECS will not resolve the provided container image tag to a digest and will use the original image URI specified in the container definition for deployment. For more information about container image resolution, see [Container image resolution](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html#deployment-container-image-stability) in the *Amazon ECS Developer Guide*.
|
56917
|
+
*/
|
56825
56918
|
VersionConsistency?: "enabled" | "disabled";
|
56826
56919
|
/**
|
56827
56920
|
* Data volumes to mount from another container. This parameter maps to ``VolumesFrom`` in the docker container create command and the ``--volumes-from`` option to docker run.
|
@@ -78760,6 +78853,9 @@ export type IoTSoftwarePackageVersionProps = {
|
|
78760
78853
|
*/
|
78761
78854
|
export type IoTSoftwarePackageVersionAttributes = {
|
78762
78855
|
ErrorReason: string;
|
78856
|
+
/**
|
78857
|
+
* @pattern `^arn:[!-~]+$`
|
78858
|
+
*/
|
78763
78859
|
PackageVersionArn: string;
|
78764
78860
|
Status: IoTSoftwarePackageVersionPackageVersionStatus;
|
78765
78861
|
};
|
@@ -98468,7 +98564,7 @@ export type LogsAccountPolicyProps = {
|
|
98468
98564
|
/**
|
98469
98565
|
* Type of the policy.
|
98470
98566
|
*/
|
98471
|
-
PolicyType: "DATA_PROTECTION_POLICY" | "SUBSCRIPTION_FILTER_POLICY";
|
98567
|
+
PolicyType: "DATA_PROTECTION_POLICY" | "SUBSCRIPTION_FILTER_POLICY" | "FIELD_INDEX_POLICY" | "TRANSFORMER_POLICY";
|
98472
98568
|
/**
|
98473
98569
|
* Scope for policy application
|
98474
98570
|
*/
|
@@ -98786,7 +98882,7 @@ export type LogsIntegrationProps = {
|
|
98786
98882
|
/**
|
98787
98883
|
* User provided identifier for integration, unique to the user account.
|
98788
98884
|
* @minLength `1`
|
98789
|
-
* @maxLength `
|
98885
|
+
* @maxLength `50`
|
98790
98886
|
* @pattern `[\.\-_/#A-Za-z0-9]+`
|
98791
98887
|
*/
|
98792
98888
|
IntegrationName: string;
|
@@ -100340,6 +100436,7 @@ export type M2EnvironmentProps = {
|
|
100340
100436
|
* @pattern `^[A-Za-z0-9][A-Za-z0-9_\-]{1,59}$`
|
100341
100437
|
*/
|
100342
100438
|
Name: string;
|
100439
|
+
NetworkType?: M2EnvironmentNetworkType;
|
100343
100440
|
/**
|
100344
100441
|
* Configures a desired maintenance window for the environment. If you do not provide a value, a random system-generated value will be assigned.
|
100345
100442
|
* @pattern `^\S{1,50}$`
|
@@ -100434,6 +100531,11 @@ export type M2EnvironmentHighAvailabilityConfig = {
|
|
100434
100531
|
*/
|
100435
100532
|
DesiredCapacity: number;
|
100436
100533
|
};
|
100534
|
+
/**
|
100535
|
+
* Type definition for `AWS::M2::Environment.NetworkType`.
|
100536
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-m2-environment-networktype.html}
|
100537
|
+
*/
|
100538
|
+
export type M2EnvironmentNetworkType = "ipv4" | "dual";
|
100437
100539
|
/**
|
100438
100540
|
* Type definition for `AWS::M2::Environment.StorageConfiguration`.
|
100439
100541
|
* Defines the storage configuration for an environment.
|
@@ -114705,9 +114807,9 @@ export type OrganizationsPolicyProps = {
|
|
114705
114807
|
*/
|
114706
114808
|
TargetIds?: string[];
|
114707
114809
|
/**
|
114708
|
-
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY
|
114810
|
+
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2
|
114709
114811
|
*/
|
114710
|
-
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY";
|
114812
|
+
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2";
|
114711
114813
|
};
|
114712
114814
|
/**
|
114713
114815
|
* Attribute type definition for `AWS::Organizations::Policy`.
|
@@ -148959,16 +149061,47 @@ export type RAMPermissionTag = {
|
|
148959
149061
|
Value: string;
|
148960
149062
|
};
|
148961
149063
|
/**
|
148962
|
-
* Resource
|
149064
|
+
* Resource type definition for AWS::RAM::ResourceShare
|
148963
149065
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html}
|
148964
149066
|
*/
|
148965
149067
|
export type RAMResourceShareProps = {
|
149068
|
+
/**
|
149069
|
+
* Specifies whether principals outside your organization in AWS Organizations can be associated with a resource share. A value of `true` lets you share with individual AWS accounts that are not in your organization. A value of `false` only has meaning if your account is a member of an AWS Organization. The default value is `true`.
|
149070
|
+
*/
|
148966
149071
|
AllowExternalPrincipals?: boolean;
|
149072
|
+
/**
|
149073
|
+
* Specifies the name of the resource share.
|
149074
|
+
*/
|
148967
149075
|
Name: string;
|
149076
|
+
/**
|
149077
|
+
* Specifies the [Amazon Resource Names (ARNs)](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) of the AWS RAM permission to associate with the resource share. If you do not specify an ARN for the permission, AWS RAM automatically attaches the default version of the permission for each resource type. You can associate only one permission with each resource type included in the resource share.
|
149078
|
+
*/
|
148968
149079
|
PermissionArns?: string[];
|
149080
|
+
/**
|
149081
|
+
* Specifies the principals to associate with the resource share. The possible values are:
|
149082
|
+
|
149083
|
+
- An AWS account ID
|
149084
|
+
|
149085
|
+
- An Amazon Resource Name (ARN) of an organization in AWS Organizations
|
149086
|
+
|
149087
|
+
- An ARN of an organizational unit (OU) in AWS Organizations
|
149088
|
+
|
149089
|
+
- An ARN of an IAM role
|
149090
|
+
|
149091
|
+
- An ARN of an IAM user
|
149092
|
+
*/
|
148969
149093
|
Principals?: string[];
|
149094
|
+
/**
|
149095
|
+
* Specifies a list of one or more ARNs of the resources to associate with the resource share.
|
149096
|
+
*/
|
148970
149097
|
ResourceArns?: string[];
|
149098
|
+
/**
|
149099
|
+
* Specifies from which source accounts the service principal has access to the resources in this resource share.
|
149100
|
+
*/
|
148971
149101
|
Sources?: string[];
|
149102
|
+
/**
|
149103
|
+
* Specifies one or more tags to attach to the resource share itself. It doesn't attach the tags to the resources associated with the resource share.
|
149104
|
+
*/
|
148972
149105
|
Tags?: RAMResourceShareTag[];
|
148973
149106
|
};
|
148974
149107
|
/**
|
@@ -148977,14 +149110,20 @@ export type RAMResourceShareProps = {
|
|
148977
149110
|
*/
|
148978
149111
|
export type RAMResourceShareAttributes = {
|
148979
149112
|
Arn: string;
|
148980
|
-
Id: string;
|
148981
149113
|
};
|
148982
149114
|
/**
|
148983
149115
|
* Type definition for `AWS::RAM::ResourceShare.Tag`.
|
149116
|
+
* A key-value pair to associate with a resource.
|
148984
149117
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ram-resourceshare-tag.html}
|
148985
149118
|
*/
|
148986
149119
|
export type RAMResourceShareTag = {
|
149120
|
+
/**
|
149121
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
149122
|
+
*/
|
148987
149123
|
Key: string;
|
149124
|
+
/**
|
149125
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
149126
|
+
*/
|
148988
149127
|
Value: string;
|
148989
149128
|
};
|
148990
149129
|
/**
|
@@ -159163,21 +159302,21 @@ export type S3ExpressDirectoryBucketProps = {
|
|
159163
159302
|
*/
|
159164
159303
|
BucketEncryption?: S3ExpressDirectoryBucketBucketEncryption;
|
159165
159304
|
/**
|
159166
|
-
* Specifies a name for the bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone. The bucket name must also follow the format 'bucket_base_name--
|
159305
|
+
* Specifies a name for the bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone or Local Zone. The bucket name must also follow the format 'bucket_base_name--zone_id--x-s3'. The zone_id can be the ID of an Availability Zone or a Local Zone. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the bucket name.
|
159167
159306
|
* @maxLength `63`
|
159168
159307
|
* @pattern `^[a-z0-9][a-z0-9//.//-]*[a-z0-9]$`
|
159169
159308
|
*/
|
159170
159309
|
BucketName?: string;
|
159171
159310
|
/**
|
159172
|
-
* Specifies the number of Availability Zone that's used for redundancy for the bucket.
|
159311
|
+
* Specifies the number of Availability Zone or Local Zone that's used for redundancy for the bucket.
|
159173
159312
|
*/
|
159174
|
-
DataRedundancy: "SingleAvailabilityZone";
|
159313
|
+
DataRedundancy: "SingleAvailabilityZone" | "SingleLocalZone";
|
159175
159314
|
/**
|
159176
159315
|
* Lifecycle rules that define how Amazon S3 Express manages objects during their lifetime.
|
159177
159316
|
*/
|
159178
159317
|
LifecycleConfiguration?: S3ExpressDirectoryBucketLifecycleConfiguration;
|
159179
159318
|
/**
|
159180
|
-
* Specifies the
|
159319
|
+
* Specifies the Zone ID of the Availability Zone or Local Zone where the directory bucket will be created. An example Availability Zone ID value is 'use1-az5'.
|
159181
159320
|
*/
|
159182
159321
|
LocationName: string;
|
159183
159322
|
};
|
@@ -159191,7 +159330,7 @@ export type S3ExpressDirectoryBucketAttributes = {
|
|
159191
159330
|
*/
|
159192
159331
|
Arn: string;
|
159193
159332
|
/**
|
159194
|
-
* Returns the code for the Availability Zone where the directory bucket was created.
|
159333
|
+
* Returns the code for the Availability Zone or Local Zone where the directory bucket was created. An example for the code of an Availability Zone is 'us-east-1f'.
|
159195
159334
|
*/
|
159196
159335
|
AvailabilityZoneName: string;
|
159197
159336
|
};
|
@@ -178374,6 +178513,7 @@ export type TransferServerAttributes = {
|
|
178374
178513
|
* @pattern `^s-([0-9a-f]{17})$`
|
178375
178514
|
*/
|
178376
178515
|
ServerId: string;
|
178516
|
+
State: TransferServerState;
|
178377
178517
|
};
|
178378
178518
|
/**
|
178379
178519
|
* Type definition for `AWS::Transfer::Server.As2Transport`.
|
@@ -178490,6 +178630,11 @@ export type TransferServerSetStatOption = "DEFAULT" | "ENABLE_NO_OP";
|
|
178490
178630
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-sftpauthenticationmethods.html}
|
178491
178631
|
*/
|
178492
178632
|
export type TransferServerSftpAuthenticationMethods = "PASSWORD" | "PUBLIC_KEY" | "PUBLIC_KEY_OR_PASSWORD" | "PUBLIC_KEY_AND_PASSWORD";
|
178633
|
+
/**
|
178634
|
+
* Type definition for `AWS::Transfer::Server.State`.
|
178635
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-state.html}
|
178636
|
+
*/
|
178637
|
+
export type TransferServerState = "OFFLINE" | "ONLINE" | "STARTING" | "STOPPING" | "START_FAILED" | "STOP_FAILED";
|
178493
178638
|
/**
|
178494
178639
|
* Type definition for `AWS::Transfer::Server.Tag`.
|
178495
178640
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-tag.html}
|
@@ -188338,7 +188483,6 @@ export interface AttributeTypes {
|
|
188338
188483
|
"AWS::Backup::RestoreTestingPlan": BackupRestoreTestingPlanAttributes;
|
188339
188484
|
"AWS::BackupGateway::Hypervisor": BackupGatewayHypervisorAttributes;
|
188340
188485
|
"AWS::Batch::ComputeEnvironment": BatchComputeEnvironmentAttributes;
|
188341
|
-
"AWS::Batch::JobDefinition": BatchJobDefinitionAttributes;
|
188342
188486
|
"AWS::Batch::JobQueue": BatchJobQueueAttributes;
|
188343
188487
|
"AWS::Batch::SchedulingPolicy": BatchSchedulingPolicyAttributes;
|
188344
188488
|
"AWS::BCMDataExports::Export": BCMDataExportsExportAttributes;
|