@awboost/cfntypes 0.100.60 → 0.100.62
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.
@@ -29091,6 +29091,7 @@ export type CodeBuildFleetVpcConfig = {
|
|
29091
29091
|
*/
|
29092
29092
|
export type CodeBuildProjectProps = {
|
29093
29093
|
Artifacts: CodeBuildProjectArtifacts;
|
29094
|
+
AutoRetryLimit?: number;
|
29094
29095
|
BadgeEnabled?: boolean;
|
29095
29096
|
BuildBatchConfig?: CodeBuildProjectProjectBuildBatchConfig;
|
29096
29097
|
Cache?: CodeBuildProjectProjectCache;
|
@@ -31601,6 +31602,7 @@ export type CognitoUserPoolClientTokenValidityUnits = {
|
|
31601
31602
|
export type CognitoUserPoolDomainProps = {
|
31602
31603
|
CustomDomainConfig?: CognitoUserPoolDomainCustomDomainConfigType;
|
31603
31604
|
Domain: string;
|
31605
|
+
ManagedLoginVersion?: number;
|
31604
31606
|
UserPoolId: string;
|
31605
31607
|
};
|
31606
31608
|
/**
|
@@ -45251,6 +45253,7 @@ export type DocDBDBClusterProps = {
|
|
45251
45253
|
PreferredMaintenanceWindow?: string;
|
45252
45254
|
RestoreToTime?: string;
|
45253
45255
|
RestoreType?: string;
|
45256
|
+
ServerlessV2ScalingConfiguration?: DocDBDBClusterServerlessV2ScalingConfiguration;
|
45254
45257
|
SnapshotIdentifier?: string;
|
45255
45258
|
SourceDBClusterIdentifier?: string;
|
45256
45259
|
StorageEncrypted?: boolean;
|
@@ -45269,6 +45272,14 @@ export type DocDBDBClusterAttributes = {
|
|
45269
45272
|
Id: string;
|
45270
45273
|
ReadEndpoint: string;
|
45271
45274
|
};
|
45275
|
+
/**
|
45276
|
+
* Type definition for `AWS::DocDB::DBCluster.ServerlessV2ScalingConfiguration`.
|
45277
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-docdb-dbcluster-serverlessv2scalingconfiguration.html}
|
45278
|
+
*/
|
45279
|
+
export type DocDBDBClusterServerlessV2ScalingConfiguration = {
|
45280
|
+
MaxCapacity: number;
|
45281
|
+
MinCapacity: number;
|
45282
|
+
};
|
45272
45283
|
/**
|
45273
45284
|
* Type definition for `AWS::DocDB::DBCluster.Tag`.
|
45274
45285
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-docdb-dbcluster-tag.html}
|
@@ -60340,6 +60351,7 @@ export type ElasticLoadBalancingV2ListenerListenerAttribute = {
|
|
60340
60351
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-mutualauthentication.html}
|
60341
60352
|
*/
|
60342
60353
|
export type ElasticLoadBalancingV2ListenerMutualAuthentication = {
|
60354
|
+
AdvertiseTrustStoreCaNames?: string;
|
60343
60355
|
/**
|
60344
60356
|
* Indicates whether expired client certificates are ignored.
|
60345
60357
|
*/
|
@@ -63660,6 +63672,12 @@ export type EventsConnectionProps = {
|
|
63660
63672
|
* @maxLength `512`
|
63661
63673
|
*/
|
63662
63674
|
Description?: string;
|
63675
|
+
/**
|
63676
|
+
* The private resource the HTTP request will be sent to.
|
63677
|
+
*/
|
63678
|
+
InvocationConnectivityParameters?: {
|
63679
|
+
ResourceParameters: EventsConnectionResourceParameters;
|
63680
|
+
};
|
63663
63681
|
/**
|
63664
63682
|
* Name of the connection.
|
63665
63683
|
* @minLength `1`
|
@@ -63678,6 +63696,31 @@ export type EventsConnectionAttributes = {
|
|
63678
63696
|
* @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:connection\/[\.\-_A-Za-z0-9]+\/[\-A-Za-z0-9]+$`
|
63679
63697
|
*/
|
63680
63698
|
Arn: string;
|
63699
|
+
AuthParameters: {
|
63700
|
+
ConnectivityParameters: {
|
63701
|
+
ResourceParameters: {
|
63702
|
+
/**
|
63703
|
+
* @minLength `20`
|
63704
|
+
* @maxLength `2048`
|
63705
|
+
* @pattern `^arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:servicenetworkresourceassociation/snra-[0-9a-z]{17}$`
|
63706
|
+
*/
|
63707
|
+
ResourceAssociationArn: string;
|
63708
|
+
};
|
63709
|
+
};
|
63710
|
+
};
|
63711
|
+
/**
|
63712
|
+
* The private resource the HTTP request will be sent to.
|
63713
|
+
*/
|
63714
|
+
InvocationConnectivityParameters: {
|
63715
|
+
ResourceParameters: {
|
63716
|
+
/**
|
63717
|
+
* @minLength `20`
|
63718
|
+
* @maxLength `2048`
|
63719
|
+
* @pattern `^arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:servicenetworkresourceassociation/snra-[0-9a-z]{17}$`
|
63720
|
+
*/
|
63721
|
+
ResourceAssociationArn: string;
|
63722
|
+
};
|
63723
|
+
};
|
63681
63724
|
/**
|
63682
63725
|
* The arn of the secrets manager secret created in the customer account.
|
63683
63726
|
* @pattern `^arn:aws([a-z]|\-)*:secretsmanager:([a-z]|\d|\-)*:([0-9]{12})?:secret:([a-z]|\d|\-)*(!)*[\/_+=\.@\-A-Za-z0-9]+$`
|
@@ -63705,6 +63748,7 @@ export type EventsConnectionApiKeyAuthParameters = {
|
|
63705
63748
|
export type EventsConnectionAuthParameters = {
|
63706
63749
|
ApiKeyAuthParameters?: EventsConnectionApiKeyAuthParameters;
|
63707
63750
|
BasicAuthParameters?: EventsConnectionBasicAuthParameters;
|
63751
|
+
ConnectivityParameters?: EventsConnectionConnectivityParameters;
|
63708
63752
|
InvocationHttpParameters?: EventsConnectionConnectionHttpParameters;
|
63709
63753
|
OAuthParameters?: EventsConnectionOAuthParameters;
|
63710
63754
|
};
|
@@ -63745,6 +63789,13 @@ export type EventsConnectionConnectionHttpParameters = {
|
|
63745
63789
|
HeaderParameters?: EventsConnectionParameter[];
|
63746
63790
|
QueryStringParameters?: EventsConnectionParameter[];
|
63747
63791
|
};
|
63792
|
+
/**
|
63793
|
+
* Type definition for `AWS::Events::Connection.ConnectivityParameters`.
|
63794
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-connectivityparameters.html}
|
63795
|
+
*/
|
63796
|
+
export type EventsConnectionConnectivityParameters = {
|
63797
|
+
ResourceParameters: EventsConnectionResourceParameters;
|
63798
|
+
};
|
63748
63799
|
/**
|
63749
63800
|
* Type definition for `AWS::Events::Connection.OAuthParameters`.
|
63750
63801
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-oauthparameters.html}
|
@@ -63769,6 +63820,17 @@ export type EventsConnectionParameter = {
|
|
63769
63820
|
Key: string;
|
63770
63821
|
Value: string;
|
63771
63822
|
};
|
63823
|
+
/**
|
63824
|
+
* Type definition for `AWS::Events::Connection.ResourceParameters`.
|
63825
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-resourceparameters.html}
|
63826
|
+
*/
|
63827
|
+
export type EventsConnectionResourceParameters = {
|
63828
|
+
/**
|
63829
|
+
* @maxLength `2048`
|
63830
|
+
* @pattern `^arn:[a-z0-9f\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:resourceconfiguration/rcfg-[0-9a-z]{17}$`
|
63831
|
+
*/
|
63832
|
+
ResourceConfigurationArn: string;
|
63833
|
+
};
|
63772
63834
|
/**
|
63773
63835
|
* Resource Type definition for AWS::Events::Endpoint.
|
63774
63836
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-endpoint.html}
|
@@ -76511,6 +76573,70 @@ export type InternetMonitorMonitorTag = {
|
|
76511
76573
|
Key?: string;
|
76512
76574
|
Value?: string;
|
76513
76575
|
};
|
76576
|
+
/**
|
76577
|
+
* Resource type definition for `AWS::Invoicing::InvoiceUnit`.
|
76578
|
+
* An invoice unit is a set of mutually exclusive accounts that correspond to your business entity. Invoice units allow you to separate AWS account costs and configures your invoice for each business entity.
|
76579
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html}
|
76580
|
+
*/
|
76581
|
+
export type InvoicingInvoiceUnitProps = {
|
76582
|
+
/**
|
76583
|
+
* @minLength `0`
|
76584
|
+
* @maxLength `500`
|
76585
|
+
* @pattern `^[\S\s]*$`
|
76586
|
+
*/
|
76587
|
+
Description?: string;
|
76588
|
+
/**
|
76589
|
+
* @minLength `12`
|
76590
|
+
* @maxLength `12`
|
76591
|
+
* @pattern `^\d{12}$`
|
76592
|
+
*/
|
76593
|
+
InvoiceReceiver: string;
|
76594
|
+
/**
|
76595
|
+
* @minLength `1`
|
76596
|
+
* @maxLength `50`
|
76597
|
+
* @pattern `^(?! )[\p{L}\p{N}\p{Z}-_]*(?<! )$`
|
76598
|
+
*/
|
76599
|
+
Name: string;
|
76600
|
+
ResourceTags?: InvoicingInvoiceUnitResourceTag[];
|
76601
|
+
Rule: InvoicingInvoiceUnitRule;
|
76602
|
+
TaxInheritanceDisabled?: boolean;
|
76603
|
+
};
|
76604
|
+
/**
|
76605
|
+
* Attribute type definition for `AWS::Invoicing::InvoiceUnit`.
|
76606
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#aws-resource-invoicing-invoiceunit-return-values}
|
76607
|
+
*/
|
76608
|
+
export type InvoicingInvoiceUnitAttributes = {
|
76609
|
+
/**
|
76610
|
+
* @minLength `1`
|
76611
|
+
* @maxLength `256`
|
76612
|
+
* @pattern `^arn:aws[-a-z0-9]*:[a-z0-9]+:[-a-z0-9]*:[0-9]{12}:[-a-zA-Z0-9/:_]+$`
|
76613
|
+
*/
|
76614
|
+
InvoiceUnitArn: string;
|
76615
|
+
LastModified: number;
|
76616
|
+
};
|
76617
|
+
/**
|
76618
|
+
* Type definition for `AWS::Invoicing::InvoiceUnit.ResourceTag`.
|
76619
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-invoicing-invoiceunit-resourcetag.html}
|
76620
|
+
*/
|
76621
|
+
export type InvoicingInvoiceUnitResourceTag = {
|
76622
|
+
/**
|
76623
|
+
* @minLength `1`
|
76624
|
+
* @maxLength `256`
|
76625
|
+
*/
|
76626
|
+
Key: string;
|
76627
|
+
/**
|
76628
|
+
* @minLength `0`
|
76629
|
+
* @maxLength `200`
|
76630
|
+
*/
|
76631
|
+
Value: string;
|
76632
|
+
};
|
76633
|
+
/**
|
76634
|
+
* Type definition for `AWS::Invoicing::InvoiceUnit.Rule`.
|
76635
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-invoicing-invoiceunit-rule.html}
|
76636
|
+
*/
|
76637
|
+
export type InvoicingInvoiceUnitRule = {
|
76638
|
+
LinkedAccounts: string[];
|
76639
|
+
};
|
76514
76640
|
/**
|
76515
76641
|
* Resource type definition for `AWS::IoT::AccountAuditConfiguration`.
|
76516
76642
|
* Configures the Device Defender audit settings for this account. Settings include how audit notifications are sent and which audit checks are enabled or disabled.
|
@@ -92578,6 +92704,9 @@ export type LambdaEventSourceMappingProps = {
|
|
92578
92704
|
* @max `10000`
|
92579
92705
|
*/
|
92580
92706
|
MaximumRetryAttempts?: number;
|
92707
|
+
/**
|
92708
|
+
* The metrics configuration for your event source. For more information, see [Event source mapping metrics](https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics).
|
92709
|
+
*/
|
92581
92710
|
MetricsConfig?: LambdaEventSourceMappingMetricsConfig;
|
92582
92711
|
/**
|
92583
92712
|
* (Kinesis and DynamoDB Streams only) The number of batches to process concurrently from each shard. The default value is 1.
|
@@ -92585,6 +92714,9 @@ export type LambdaEventSourceMappingProps = {
|
|
92585
92714
|
* @max `10`
|
92586
92715
|
*/
|
92587
92716
|
ParallelizationFactor?: number;
|
92717
|
+
/**
|
92718
|
+
* (Amazon MSK and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode).
|
92719
|
+
*/
|
92588
92720
|
ProvisionedPollerConfig?: LambdaEventSourceMappingProvisionedPollerConfig;
|
92589
92721
|
/**
|
92590
92722
|
* (Amazon MQ) The name of the Amazon MQ broker destination queue to consume.
|
@@ -92750,11 +92882,12 @@ export type LambdaEventSourceMappingFilterCriteria = {
|
|
92750
92882
|
};
|
92751
92883
|
/**
|
92752
92884
|
* Type definition for `AWS::Lambda::EventSourceMapping.MetricsConfig`.
|
92885
|
+
* The metrics configuration for your event source. Use this configuration object to define which metrics you want your event source mapping to produce.
|
92753
92886
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-metricsconfig.html}
|
92754
92887
|
*/
|
92755
92888
|
export type LambdaEventSourceMappingMetricsConfig = {
|
92756
92889
|
/**
|
92757
|
-
*
|
92890
|
+
* The metrics you want your event source mapping to produce. Include ``EventCount`` to receive event source mapping metrics related to the number of events processed by your event source mapping. For more information about these metrics, see [Event source mapping metrics](https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics).
|
92758
92891
|
* @minLength `0`
|
92759
92892
|
* @maxLength `1`
|
92760
92893
|
*/
|
@@ -92768,9 +92901,8 @@ export type LambdaEventSourceMappingMetricsConfig = {
|
|
92768
92901
|
export type LambdaEventSourceMappingOnFailure = {
|
92769
92902
|
/**
|
92770
92903
|
* The Amazon Resource Name (ARN) of the destination resource.
|
92771
|
-
To retain records of [asynchronous invocations](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations), you can configure an Amazon SNS topic, Amazon SQS queue, Lambda function, or Amazon EventBridge event bus as the destination.
|
92772
|
-
To retain records of failed invocations from [Kinesis
|
92773
|
-
To retain records of failed invocations from [self-managed Kafka](https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-smaa-onfailure-destination) or [Amazon MSK](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-onfailure-destination), you can configure an Amazon SNS topic, Amazon SQS queue, or Amazon S3 bucket as the destination.
|
92904
|
+
To retain records of unsuccessful [asynchronous invocations](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations), you can configure an Amazon SNS topic, Amazon SQS queue, Amazon S3 bucket, Lambda function, or Amazon EventBridge event bus as the destination.
|
92905
|
+
To retain records of failed invocations from [Kinesis](https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html), [DynamoDB](https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html), [self-managed Kafka](https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-smaa-onfailure-destination) or [Amazon MSK](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-onfailure-destination), you can configure an Amazon SNS topic, Amazon SQS queue, or Amazon S3 bucket as the destination.
|
92774
92906
|
* @minLength `12`
|
92775
92907
|
* @maxLength `1024`
|
92776
92908
|
* @pattern `arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
|
@@ -92779,6 +92911,7 @@ export type LambdaEventSourceMappingOnFailure = {
|
|
92779
92911
|
};
|
92780
92912
|
/**
|
92781
92913
|
* Type definition for `AWS::Lambda::EventSourceMapping.ProvisionedPollerConfig`.
|
92914
|
+
* The [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode) configuration for the event source. Use provisioned mode to customize the minimum and maximum number of event pollers for your event source.
|
92782
92915
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-provisionedpollerconfig.html}
|
92783
92916
|
*/
|
92784
92917
|
export type LambdaEventSourceMappingProvisionedPollerConfig = {
|
@@ -98276,6 +98409,70 @@ export type LogsDestinationProps = {
|
|
98276
98409
|
export type LogsDestinationAttributes = {
|
98277
98410
|
Arn: string;
|
98278
98411
|
};
|
98412
|
+
/**
|
98413
|
+
* Resource type definition for `AWS::Logs::Integration`.
|
98414
|
+
* Resource Schema for Logs Integration Resource
|
98415
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-integration.html}
|
98416
|
+
*/
|
98417
|
+
export type LogsIntegrationProps = {
|
98418
|
+
/**
|
98419
|
+
* User provided identifier for integration, unique to the user account.
|
98420
|
+
* @minLength `1`
|
98421
|
+
* @maxLength `256`
|
98422
|
+
* @pattern `[\.\-_/#A-Za-z0-9]+`
|
98423
|
+
*/
|
98424
|
+
IntegrationName: string;
|
98425
|
+
/**
|
98426
|
+
* The type of the Integration.
|
98427
|
+
*/
|
98428
|
+
IntegrationType: "OPENSEARCH";
|
98429
|
+
/**
|
98430
|
+
* OpenSearchResourceConfig for the given Integration
|
98431
|
+
*/
|
98432
|
+
ResourceConfig: {
|
98433
|
+
OpenSearchResourceConfig?: LogsIntegrationOpenSearchResourceConfig;
|
98434
|
+
};
|
98435
|
+
};
|
98436
|
+
/**
|
98437
|
+
* Attribute type definition for `AWS::Logs::Integration`.
|
98438
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-integration.html#aws-resource-logs-integration-return-values}
|
98439
|
+
*/
|
98440
|
+
export type LogsIntegrationAttributes = {
|
98441
|
+
/**
|
98442
|
+
* Status of creation for the Integration and its resources
|
98443
|
+
*/
|
98444
|
+
IntegrationStatus: "PROVISIONING" | "ACTIVE" | "FAILED";
|
98445
|
+
};
|
98446
|
+
/**
|
98447
|
+
* Type definition for `AWS::Logs::Integration.OpenSearchResourceConfig`.
|
98448
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-integration-opensearchresourceconfig.html}
|
98449
|
+
*/
|
98450
|
+
export type LogsIntegrationOpenSearchResourceConfig = {
|
98451
|
+
/**
|
98452
|
+
* @minLength `20`
|
98453
|
+
* @maxLength `2048`
|
98454
|
+
* @pattern `[\w#+=/:,.@-]*\*?`
|
98455
|
+
*/
|
98456
|
+
ApplicationARN?: string;
|
98457
|
+
DashboardViewerPrincipals: string[];
|
98458
|
+
/**
|
98459
|
+
* @minLength `20`
|
98460
|
+
* @maxLength `2048`
|
98461
|
+
* @pattern `[\w#+=/:,.@-]*\*?`
|
98462
|
+
*/
|
98463
|
+
DataSourceRoleArn: string;
|
98464
|
+
/**
|
98465
|
+
* @minLength `20`
|
98466
|
+
* @maxLength `2048`
|
98467
|
+
* @pattern `[\w#+=/:,.@-]*\*?`
|
98468
|
+
*/
|
98469
|
+
KmsKeyArn?: string;
|
98470
|
+
/**
|
98471
|
+
* @min `1`
|
98472
|
+
* @max `3650`
|
98473
|
+
*/
|
98474
|
+
RetentionDays?: number;
|
98475
|
+
};
|
98279
98476
|
/**
|
98280
98477
|
* The AWS::Logs::LogAnomalyDetector resource specifies a CloudWatch Logs LogAnomalyDetector.
|
98281
98478
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loganomalydetector.html}
|
@@ -101374,6 +101571,7 @@ export type MediaConvertQueueAttributes = {
|
|
101374
101571
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html}
|
101375
101572
|
*/
|
101376
101573
|
export type MediaLiveChannelProps = {
|
101574
|
+
AnywhereSettings?: MediaLiveChannelAnywhereSettings;
|
101377
101575
|
CdiInputSpecification?: MediaLiveChannelCdiInputSpecification;
|
101378
101576
|
ChannelClass?: string;
|
101379
101577
|
Destinations?: MediaLiveChannelOutputDestination[];
|
@@ -101432,6 +101630,14 @@ export type MediaLiveChannelAc3Settings = {
|
|
101432
101630
|
export type MediaLiveChannelAncillarySourceSettings = {
|
101433
101631
|
SourceAncillaryChannelNumber?: number;
|
101434
101632
|
};
|
101633
|
+
/**
|
101634
|
+
* Type definition for `AWS::MediaLive::Channel.AnywhereSettings`.
|
101635
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-anywheresettings.html}
|
101636
|
+
*/
|
101637
|
+
export type MediaLiveChannelAnywhereSettings = {
|
101638
|
+
ChannelPlacementGroupId?: string;
|
101639
|
+
ClusterId?: string;
|
101640
|
+
};
|
101435
101641
|
/**
|
101436
101642
|
* Type definition for `AWS::MediaLive::Channel.ArchiveCdnSettings`.
|
101437
101643
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-archivecdnsettings.html}
|
@@ -101629,6 +101835,39 @@ export type MediaLiveChannelAutomaticInputFailoverSettings = {
|
|
101629
101835
|
InputPreference?: string;
|
101630
101836
|
SecondaryInputId?: string;
|
101631
101837
|
};
|
101838
|
+
/**
|
101839
|
+
* Type definition for `AWS::MediaLive::Channel.Av1ColorSpaceSettings`.
|
101840
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-av1colorspacesettings.html}
|
101841
|
+
*/
|
101842
|
+
export type MediaLiveChannelAv1ColorSpaceSettings = {
|
101843
|
+
ColorSpacePassthroughSettings?: MediaLiveChannelColorSpacePassthroughSettings;
|
101844
|
+
Hdr10Settings?: MediaLiveChannelHdr10Settings;
|
101845
|
+
Rec601Settings?: MediaLiveChannelRec601Settings;
|
101846
|
+
Rec709Settings?: MediaLiveChannelRec709Settings;
|
101847
|
+
};
|
101848
|
+
/**
|
101849
|
+
* Type definition for `AWS::MediaLive::Channel.Av1Settings`.
|
101850
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-av1settings.html}
|
101851
|
+
*/
|
101852
|
+
export type MediaLiveChannelAv1Settings = {
|
101853
|
+
AfdSignaling?: string;
|
101854
|
+
BufSize?: number;
|
101855
|
+
ColorSpaceSettings?: MediaLiveChannelAv1ColorSpaceSettings;
|
101856
|
+
FixedAfd?: string;
|
101857
|
+
FramerateDenominator?: number;
|
101858
|
+
FramerateNumerator?: number;
|
101859
|
+
GopSize?: number;
|
101860
|
+
GopSizeUnits?: string;
|
101861
|
+
Level?: string;
|
101862
|
+
LookAheadRateControl?: string;
|
101863
|
+
MaxBitrate?: number;
|
101864
|
+
MinIInterval?: number;
|
101865
|
+
ParDenominator?: number;
|
101866
|
+
ParNumerator?: number;
|
101867
|
+
QvbrQualityLevel?: number;
|
101868
|
+
SceneChangeDetect?: string;
|
101869
|
+
TimecodeBurninSettings?: MediaLiveChannelTimecodeBurninSettings;
|
101870
|
+
};
|
101632
101871
|
/**
|
101633
101872
|
* Type definition for `AWS::MediaLive::Channel.AvailBlanking`.
|
101634
101873
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-availblanking.html}
|
@@ -101654,6 +101893,14 @@ export type MediaLiveChannelAvailSettings = {
|
|
101654
101893
|
Scte35SpliceInsert?: MediaLiveChannelScte35SpliceInsert;
|
101655
101894
|
Scte35TimeSignalApos?: MediaLiveChannelScte35TimeSignalApos;
|
101656
101895
|
};
|
101896
|
+
/**
|
101897
|
+
* Type definition for `AWS::MediaLive::Channel.BandwidthReductionFilterSettings`.
|
101898
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-bandwidthreductionfiltersettings.html}
|
101899
|
+
*/
|
101900
|
+
export type MediaLiveChannelBandwidthReductionFilterSettings = {
|
101901
|
+
PostFilterSharpening?: string;
|
101902
|
+
Strength?: string;
|
101903
|
+
};
|
101657
101904
|
/**
|
101658
101905
|
* Type definition for `AWS::MediaLive::Channel.BlackoutSlate`.
|
101659
101906
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-blackoutslate.html}
|
@@ -102092,6 +102339,7 @@ export type MediaLiveChannelH264ColorSpaceSettings = {
|
|
102092
102339
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-h264filtersettings.html}
|
102093
102340
|
*/
|
102094
102341
|
export type MediaLiveChannelH264FilterSettings = {
|
102342
|
+
BandwidthReductionFilterSettings?: MediaLiveChannelBandwidthReductionFilterSettings;
|
102095
102343
|
TemporalFilterSettings?: MediaLiveChannelTemporalFilterSettings;
|
102096
102344
|
};
|
102097
102345
|
/**
|
@@ -102159,6 +102407,7 @@ export type MediaLiveChannelH265ColorSpaceSettings = {
|
|
102159
102407
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-h265filtersettings.html}
|
102160
102408
|
*/
|
102161
102409
|
export type MediaLiveChannelH265FilterSettings = {
|
102410
|
+
BandwidthReductionFilterSettings?: MediaLiveChannelBandwidthReductionFilterSettings;
|
102162
102411
|
TemporalFilterSettings?: MediaLiveChannelTemporalFilterSettings;
|
102163
102412
|
};
|
102164
102413
|
/**
|
@@ -102369,6 +102618,7 @@ export type MediaLiveChannelInputAttachment = {
|
|
102369
102618
|
InputAttachmentName?: string;
|
102370
102619
|
InputId?: string;
|
102371
102620
|
InputSettings?: MediaLiveChannelInputSettings;
|
102621
|
+
LogicalInterfaceNames?: string[];
|
102372
102622
|
};
|
102373
102623
|
/**
|
102374
102624
|
* Type definition for `AWS::MediaLive::Channel.InputChannelLevel`.
|
@@ -102631,16 +102881,51 @@ export type MediaLiveChannelMsSmoothOutputSettings = {
|
|
102631
102881
|
H265PackagingType?: string;
|
102632
102882
|
NameModifier?: string;
|
102633
102883
|
};
|
102884
|
+
/**
|
102885
|
+
* Type definition for `AWS::MediaLive::Channel.MulticastInputSettings`.
|
102886
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-multicastinputsettings.html}
|
102887
|
+
*/
|
102888
|
+
export type MediaLiveChannelMulticastInputSettings = {
|
102889
|
+
SourceIpAddress?: string;
|
102890
|
+
};
|
102891
|
+
/**
|
102892
|
+
* Type definition for `AWS::MediaLive::Channel.MultiplexContainerSettings`.
|
102893
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-multiplexcontainersettings.html}
|
102894
|
+
*/
|
102895
|
+
export type MediaLiveChannelMultiplexContainerSettings = {
|
102896
|
+
MultiplexM2tsSettings?: MediaLiveChannelMultiplexM2tsSettings;
|
102897
|
+
};
|
102634
102898
|
/**
|
102635
102899
|
* Type definition for `AWS::MediaLive::Channel.MultiplexGroupSettings`.
|
102636
102900
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-multiplexgroupsettings.html}
|
102637
102901
|
*/
|
102638
102902
|
export type MediaLiveChannelMultiplexGroupSettings = Record<string, any>;
|
102903
|
+
/**
|
102904
|
+
* Type definition for `AWS::MediaLive::Channel.MultiplexM2tsSettings`.
|
102905
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-multiplexm2tssettings.html}
|
102906
|
+
*/
|
102907
|
+
export type MediaLiveChannelMultiplexM2tsSettings = {
|
102908
|
+
AbsentInputAudioBehavior?: string;
|
102909
|
+
Arib?: string;
|
102910
|
+
AudioBufferModel?: string;
|
102911
|
+
AudioFramesPerPes?: number;
|
102912
|
+
AudioStreamType?: string;
|
102913
|
+
CcDescriptor?: string;
|
102914
|
+
Ebif?: string;
|
102915
|
+
EsRateInPes?: string;
|
102916
|
+
Klv?: string;
|
102917
|
+
NielsenId3Behavior?: string;
|
102918
|
+
PcrControl?: string;
|
102919
|
+
PcrPeriod?: number;
|
102920
|
+
Scte35Control?: string;
|
102921
|
+
Scte35PrerollPullupMilliseconds?: number;
|
102922
|
+
};
|
102639
102923
|
/**
|
102640
102924
|
* Type definition for `AWS::MediaLive::Channel.MultiplexOutputSettings`.
|
102641
102925
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-multiplexoutputsettings.html}
|
102642
102926
|
*/
|
102643
102927
|
export type MediaLiveChannelMultiplexOutputSettings = {
|
102928
|
+
ContainerSettings?: MediaLiveChannelMultiplexContainerSettings;
|
102644
102929
|
Destination?: MediaLiveChannelOutputLocationRef;
|
102645
102930
|
};
|
102646
102931
|
/**
|
@@ -102657,6 +102942,7 @@ export type MediaLiveChannelMultiplexProgramChannelDestinationSettings = {
|
|
102657
102942
|
*/
|
102658
102943
|
export type MediaLiveChannelNetworkInputSettings = {
|
102659
102944
|
HlsInputSettings?: MediaLiveChannelHlsInputSettings;
|
102945
|
+
MulticastInputSettings?: MediaLiveChannelMulticastInputSettings;
|
102660
102946
|
ServerValidation?: string;
|
102661
102947
|
};
|
102662
102948
|
/**
|
@@ -102714,6 +103000,7 @@ export type MediaLiveChannelOutputDestination = {
|
|
102714
103000
|
MediaPackageSettings?: MediaLiveChannelMediaPackageOutputDestinationSettings[];
|
102715
103001
|
MultiplexSettings?: MediaLiveChannelMultiplexProgramChannelDestinationSettings;
|
102716
103002
|
Settings?: MediaLiveChannelOutputDestinationSettings[];
|
103003
|
+
SrtSettings?: MediaLiveChannelSrtOutputDestinationSettings[];
|
102717
103004
|
};
|
102718
103005
|
/**
|
102719
103006
|
* Type definition for `AWS::MediaLive::Channel.OutputDestinationSettings`.
|
@@ -102747,6 +103034,7 @@ export type MediaLiveChannelOutputGroupSettings = {
|
|
102747
103034
|
MsSmoothGroupSettings?: MediaLiveChannelMsSmoothGroupSettings;
|
102748
103035
|
MultiplexGroupSettings?: MediaLiveChannelMultiplexGroupSettings;
|
102749
103036
|
RtmpGroupSettings?: MediaLiveChannelRtmpGroupSettings;
|
103037
|
+
SrtGroupSettings?: MediaLiveChannelSrtGroupSettings;
|
102750
103038
|
UdpGroupSettings?: MediaLiveChannelUdpGroupSettings;
|
102751
103039
|
};
|
102752
103040
|
/**
|
@@ -102777,6 +103065,7 @@ export type MediaLiveChannelOutputSettings = {
|
|
102777
103065
|
MsSmoothOutputSettings?: MediaLiveChannelMsSmoothOutputSettings;
|
102778
103066
|
MultiplexOutputSettings?: MediaLiveChannelMultiplexOutputSettings;
|
102779
103067
|
RtmpOutputSettings?: MediaLiveChannelRtmpOutputSettings;
|
103068
|
+
SrtOutputSettings?: MediaLiveChannelSrtOutputSettings;
|
102780
103069
|
UdpOutputSettings?: MediaLiveChannelUdpOutputSettings;
|
102781
103070
|
};
|
102782
103071
|
/**
|
@@ -102891,6 +103180,33 @@ export type MediaLiveChannelScte35TimeSignalApos = {
|
|
102891
103180
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-smptettdestinationsettings.html}
|
102892
103181
|
*/
|
102893
103182
|
export type MediaLiveChannelSmpteTtDestinationSettings = Record<string, any>;
|
103183
|
+
/**
|
103184
|
+
* Type definition for `AWS::MediaLive::Channel.SrtGroupSettings`.
|
103185
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-srtgroupsettings.html}
|
103186
|
+
*/
|
103187
|
+
export type MediaLiveChannelSrtGroupSettings = {
|
103188
|
+
InputLossAction?: string;
|
103189
|
+
};
|
103190
|
+
/**
|
103191
|
+
* Type definition for `AWS::MediaLive::Channel.SrtOutputDestinationSettings`.
|
103192
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-srtoutputdestinationsettings.html}
|
103193
|
+
*/
|
103194
|
+
export type MediaLiveChannelSrtOutputDestinationSettings = {
|
103195
|
+
EncryptionPassphraseSecretArn?: string;
|
103196
|
+
StreamId?: string;
|
103197
|
+
Url?: string;
|
103198
|
+
};
|
103199
|
+
/**
|
103200
|
+
* Type definition for `AWS::MediaLive::Channel.SrtOutputSettings`.
|
103201
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-srtoutputsettings.html}
|
103202
|
+
*/
|
103203
|
+
export type MediaLiveChannelSrtOutputSettings = {
|
103204
|
+
BufferMsec?: number;
|
103205
|
+
ContainerSettings?: MediaLiveChannelUdpContainerSettings;
|
103206
|
+
Destination?: MediaLiveChannelOutputLocationRef;
|
103207
|
+
EncryptionType?: string;
|
103208
|
+
Latency?: number;
|
103209
|
+
};
|
102894
103210
|
/**
|
102895
103211
|
* Type definition for `AWS::MediaLive::Channel.StandardHlsSettings`.
|
102896
103212
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-standardhlssettings.html}
|
@@ -102998,6 +103314,7 @@ export type MediaLiveChannelVideoBlackFailoverSettings = {
|
|
102998
103314
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videocodecsettings.html}
|
102999
103315
|
*/
|
103000
103316
|
export type MediaLiveChannelVideoCodecSettings = {
|
103317
|
+
Av1Settings?: MediaLiveChannelAv1Settings;
|
103001
103318
|
FrameCaptureSettings?: MediaLiveChannelFrameCaptureSettings;
|
103002
103319
|
H264Settings?: MediaLiveChannelH264Settings;
|
103003
103320
|
H265Settings?: MediaLiveChannelH265Settings;
|
@@ -103574,8 +103891,10 @@ export type MediaLiveEventBridgeRuleTemplateGroupTagMap = Record<string, string>
|
|
103574
103891
|
export type MediaLiveInputProps = {
|
103575
103892
|
Destinations?: MediaLiveInputInputDestinationRequest[];
|
103576
103893
|
InputDevices?: MediaLiveInputInputDeviceSettings[];
|
103894
|
+
InputNetworkLocation?: string;
|
103577
103895
|
InputSecurityGroups?: string[];
|
103578
103896
|
MediaConnectFlows?: MediaLiveInputMediaConnectFlowRequest[];
|
103897
|
+
MulticastSettings?: MediaLiveInputMulticastSettingsCreateRequest;
|
103579
103898
|
Name?: string;
|
103580
103899
|
RoleArn?: string;
|
103581
103900
|
Sources?: MediaLiveInputInputSourceRequest[];
|
@@ -103597,6 +103916,9 @@ export type MediaLiveInputAttributes = {
|
|
103597
103916
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputdestinationrequest.html}
|
103598
103917
|
*/
|
103599
103918
|
export type MediaLiveInputInputDestinationRequest = {
|
103919
|
+
Network?: string;
|
103920
|
+
NetworkRoutes?: MediaLiveInputInputRequestDestinationRoute[];
|
103921
|
+
StaticIpAddress?: string;
|
103600
103922
|
StreamName?: string;
|
103601
103923
|
};
|
103602
103924
|
/**
|
@@ -103606,6 +103928,14 @@ export type MediaLiveInputInputDestinationRequest = {
|
|
103606
103928
|
export type MediaLiveInputInputDeviceSettings = {
|
103607
103929
|
Id?: string;
|
103608
103930
|
};
|
103931
|
+
/**
|
103932
|
+
* Type definition for `AWS::MediaLive::Input.InputRequestDestinationRoute`.
|
103933
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputrequestdestinationroute.html}
|
103934
|
+
*/
|
103935
|
+
export type MediaLiveInputInputRequestDestinationRoute = {
|
103936
|
+
Cidr?: string;
|
103937
|
+
Gateway?: string;
|
103938
|
+
};
|
103609
103939
|
/**
|
103610
103940
|
* Type definition for `AWS::MediaLive::Input.InputSourceRequest`.
|
103611
103941
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputsourcerequest.html}
|
@@ -103630,6 +103960,21 @@ export type MediaLiveInputInputVpcRequest = {
|
|
103630
103960
|
export type MediaLiveInputMediaConnectFlowRequest = {
|
103631
103961
|
FlowArn?: string;
|
103632
103962
|
};
|
103963
|
+
/**
|
103964
|
+
* Type definition for `AWS::MediaLive::Input.MulticastSettingsCreateRequest`.
|
103965
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-multicastsettingscreaterequest.html}
|
103966
|
+
*/
|
103967
|
+
export type MediaLiveInputMulticastSettingsCreateRequest = {
|
103968
|
+
Sources?: MediaLiveInputMulticastSourceCreateRequest[];
|
103969
|
+
};
|
103970
|
+
/**
|
103971
|
+
* Type definition for `AWS::MediaLive::Input.MulticastSourceCreateRequest`.
|
103972
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-multicastsourcecreaterequest.html}
|
103973
|
+
*/
|
103974
|
+
export type MediaLiveInputMulticastSourceCreateRequest = {
|
103975
|
+
SourceIp?: string;
|
103976
|
+
Url?: string;
|
103977
|
+
};
|
103633
103978
|
/**
|
103634
103979
|
* Type definition for `AWS::MediaLive::Input.SrtCallerDecryptionRequest`.
|
103635
103980
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-srtcallerdecryptionrequest.html}
|
@@ -106982,6 +107327,10 @@ export type MemoryDBClusterProps = {
|
|
106982
107327
|
* Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.
|
106983
107328
|
*/
|
106984
107329
|
MaintenanceWindow?: string;
|
107330
|
+
/**
|
107331
|
+
* The name of the Global Datastore, it is generated by MemoryDB adding a prefix to MultiRegionClusterNameSuffix.
|
107332
|
+
*/
|
107333
|
+
MultiRegionClusterName?: string;
|
106985
107334
|
/**
|
106986
107335
|
* The compute and memory capacity of the nodes in the cluster.
|
106987
107336
|
*/
|
@@ -107103,6 +107452,96 @@ export type MemoryDBClusterTag = {
|
|
107103
107452
|
*/
|
107104
107453
|
Value: string;
|
107105
107454
|
};
|
107455
|
+
/**
|
107456
|
+
* Resource type definition for `AWS::MemoryDB::MultiRegionCluster`.
|
107457
|
+
* The AWS::MemoryDB::Multi Region Cluster resource creates an Amazon MemoryDB Multi Region Cluster.
|
107458
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html}
|
107459
|
+
*/
|
107460
|
+
export type MemoryDBMultiRegionClusterProps = {
|
107461
|
+
/**
|
107462
|
+
* Description of the multi region cluster.
|
107463
|
+
*/
|
107464
|
+
Description?: string;
|
107465
|
+
/**
|
107466
|
+
* The engine type used by the multi region cluster.
|
107467
|
+
*/
|
107468
|
+
Engine?: string;
|
107469
|
+
/**
|
107470
|
+
* The Redis engine version used by the multi region cluster.
|
107471
|
+
*/
|
107472
|
+
EngineVersion?: string;
|
107473
|
+
/**
|
107474
|
+
* The name of the Multi Region cluster. This value must be unique as it also serves as the multi region cluster identifier.
|
107475
|
+
* @pattern `[a-z][a-z0-9\-]*`
|
107476
|
+
*/
|
107477
|
+
MultiRegionClusterNameSuffix?: string;
|
107478
|
+
/**
|
107479
|
+
* The name of the parameter group associated with the multi region cluster.
|
107480
|
+
*/
|
107481
|
+
MultiRegionParameterGroupName?: string;
|
107482
|
+
/**
|
107483
|
+
* The compute and memory capacity of the nodes in the multi region cluster.
|
107484
|
+
*/
|
107485
|
+
NodeType: string;
|
107486
|
+
/**
|
107487
|
+
* The number of shards the multi region cluster will contain.
|
107488
|
+
*/
|
107489
|
+
NumShards?: number;
|
107490
|
+
/**
|
107491
|
+
* A flag that enables in-transit encryption when set to true.
|
107492
|
+
|
107493
|
+
You cannot modify the value of TransitEncryptionEnabled after the cluster is created. To enable in-transit encryption on a cluster you must set TransitEncryptionEnabled to true when you create a cluster.
|
107494
|
+
*/
|
107495
|
+
TLSEnabled?: boolean;
|
107496
|
+
/**
|
107497
|
+
* An array of key-value pairs to apply to this multi region cluster.
|
107498
|
+
* @maxLength `50`
|
107499
|
+
*/
|
107500
|
+
Tags?: MemoryDBMultiRegionClusterTag[];
|
107501
|
+
/**
|
107502
|
+
* An enum string value that determines the update strategy for scaling. Possible values are 'COORDINATED' and 'UNCOORDINATED'. Default is 'COORDINATED'.
|
107503
|
+
*/
|
107504
|
+
UpdateStrategy?: "COORDINATED" | "UNCOORDINATED";
|
107505
|
+
};
|
107506
|
+
/**
|
107507
|
+
* Attribute type definition for `AWS::MemoryDB::MultiRegionCluster`.
|
107508
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html#aws-resource-memorydb-multiregioncluster-return-values}
|
107509
|
+
*/
|
107510
|
+
export type MemoryDBMultiRegionClusterAttributes = {
|
107511
|
+
/**
|
107512
|
+
* The Amazon Resource Name (ARN) of the multi region cluster.
|
107513
|
+
*/
|
107514
|
+
ARN: string;
|
107515
|
+
/**
|
107516
|
+
* The name of the Global Datastore, it is generated by MemoryDB adding a prefix to MultiRegionClusterNameSuffix.
|
107517
|
+
*/
|
107518
|
+
MultiRegionClusterName: string;
|
107519
|
+
/**
|
107520
|
+
* The status of the multi region cluster. For example, Available, Updating, Creating.
|
107521
|
+
*/
|
107522
|
+
Status: string;
|
107523
|
+
};
|
107524
|
+
/**
|
107525
|
+
* Type definition for `AWS::MemoryDB::MultiRegionCluster.Tag`.
|
107526
|
+
* A key-value pair to associate with a resource.
|
107527
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-memorydb-multiregioncluster-tag.html}
|
107528
|
+
*/
|
107529
|
+
export type MemoryDBMultiRegionClusterTag = {
|
107530
|
+
/**
|
107531
|
+
* The key for the tag. May not be null.
|
107532
|
+
* @minLength `1`
|
107533
|
+
* @maxLength `128`
|
107534
|
+
* @pattern `^(?!aws:)(?!memorydb:)[a-zA-Z0-9 _\.\/=+:\-@]{1,128}$`
|
107535
|
+
*/
|
107536
|
+
Key: string;
|
107537
|
+
/**
|
107538
|
+
* The tag's value. May be null.
|
107539
|
+
* @minLength `1`
|
107540
|
+
* @maxLength `256`
|
107541
|
+
* @pattern `^(?!aws:)(?!memorydb:)[a-zA-Z0-9 _\.\/=+:\-@]{1,256}$`
|
107542
|
+
*/
|
107543
|
+
Value: string;
|
107544
|
+
};
|
107106
107545
|
/**
|
107107
107546
|
* The AWS::MemoryDB::ParameterGroup resource creates an Amazon MemoryDB ParameterGroup.
|
107108
107547
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-parametergroup.html}
|
@@ -170166,6 +170605,7 @@ export type ServiceDiscoveryServiceProps = {
|
|
170166
170605
|
HealthCheckCustomConfig?: ServiceDiscoveryServiceHealthCheckCustomConfig;
|
170167
170606
|
Name?: string;
|
170168
170607
|
NamespaceId?: string;
|
170608
|
+
ServiceAttributes?: Record<string, any>;
|
170169
170609
|
Tags?: ServiceDiscoveryServiceTag[];
|
170170
170610
|
Type?: string;
|
170171
170611
|
};
|
@@ -171711,6 +172151,7 @@ export type SESReceiptRuleAttributes = {
|
|
171711
172151
|
export type SESReceiptRuleAction = {
|
171712
172152
|
AddHeaderAction?: SESReceiptRuleAddHeaderAction;
|
171713
172153
|
BounceAction?: SESReceiptRuleBounceAction;
|
172154
|
+
ConnectAction?: SESReceiptRuleConnectAction;
|
171714
172155
|
LambdaAction?: SESReceiptRuleLambdaAction;
|
171715
172156
|
S3Action?: SESReceiptRuleS3Action;
|
171716
172157
|
SNSAction?: SESReceiptRuleSNSAction;
|
@@ -171736,6 +172177,14 @@ export type SESReceiptRuleBounceAction = {
|
|
171736
172177
|
StatusCode?: string;
|
171737
172178
|
TopicArn?: string;
|
171738
172179
|
};
|
172180
|
+
/**
|
172181
|
+
* Type definition for `AWS::SES::ReceiptRule.ConnectAction`.
|
172182
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-connectaction.html}
|
172183
|
+
*/
|
172184
|
+
export type SESReceiptRuleConnectAction = {
|
172185
|
+
IAMRoleARN: string;
|
172186
|
+
InstanceARN: string;
|
172187
|
+
};
|
171739
172188
|
/**
|
171740
172189
|
* Type definition for `AWS::SES::ReceiptRule.LambdaAction`.
|
171741
172190
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-lambdaaction.html}
|
@@ -185252,6 +185701,7 @@ export interface ResourceTypes {
|
|
185252
185701
|
"AWS::InspectorV2::CisScanConfiguration": InspectorV2CisScanConfigurationProps;
|
185253
185702
|
"AWS::InspectorV2::Filter": InspectorV2FilterProps;
|
185254
185703
|
"AWS::InternetMonitor::Monitor": InternetMonitorMonitorProps;
|
185704
|
+
"AWS::Invoicing::InvoiceUnit": InvoicingInvoiceUnitProps;
|
185255
185705
|
"AWS::IoT::AccountAuditConfiguration": IoTAccountAuditConfigurationProps;
|
185256
185706
|
"AWS::IoT::Authorizer": IoTAuthorizerProps;
|
185257
185707
|
"AWS::IoT::BillingGroup": IoTBillingGroupProps;
|
@@ -185405,6 +185855,7 @@ export interface ResourceTypes {
|
|
185405
185855
|
"AWS::Logs::DeliveryDestination": LogsDeliveryDestinationProps;
|
185406
185856
|
"AWS::Logs::DeliverySource": LogsDeliverySourceProps;
|
185407
185857
|
"AWS::Logs::Destination": LogsDestinationProps;
|
185858
|
+
"AWS::Logs::Integration": LogsIntegrationProps;
|
185408
185859
|
"AWS::Logs::LogAnomalyDetector": LogsLogAnomalyDetectorProps;
|
185409
185860
|
"AWS::Logs::LogGroup": LogsLogGroupProps;
|
185410
185861
|
"AWS::Logs::LogStream": LogsLogStreamProps;
|
@@ -185471,6 +185922,7 @@ export interface ResourceTypes {
|
|
185471
185922
|
"AWS::MediaTailor::VodSource": MediaTailorVodSourceProps;
|
185472
185923
|
"AWS::MemoryDB::ACL": MemoryDBACLProps;
|
185473
185924
|
"AWS::MemoryDB::Cluster": MemoryDBClusterProps;
|
185925
|
+
"AWS::MemoryDB::MultiRegionCluster": MemoryDBMultiRegionClusterProps;
|
185474
185926
|
"AWS::MemoryDB::ParameterGroup": MemoryDBParameterGroupProps;
|
185475
185927
|
"AWS::MemoryDB::SubnetGroup": MemoryDBSubnetGroupProps;
|
185476
185928
|
"AWS::MemoryDB::User": MemoryDBUserProps;
|
@@ -186522,6 +186974,7 @@ export interface AttributeTypes {
|
|
186522
186974
|
"AWS::InspectorV2::CisScanConfiguration": InspectorV2CisScanConfigurationAttributes;
|
186523
186975
|
"AWS::InspectorV2::Filter": InspectorV2FilterAttributes;
|
186524
186976
|
"AWS::InternetMonitor::Monitor": InternetMonitorMonitorAttributes;
|
186977
|
+
"AWS::Invoicing::InvoiceUnit": InvoicingInvoiceUnitAttributes;
|
186525
186978
|
"AWS::IoT::Authorizer": IoTAuthorizerAttributes;
|
186526
186979
|
"AWS::IoT::BillingGroup": IoTBillingGroupAttributes;
|
186527
186980
|
"AWS::IoT::CACertificate": IoTCACertificateAttributes;
|
@@ -186663,6 +187116,7 @@ export interface AttributeTypes {
|
|
186663
187116
|
"AWS::Logs::DeliveryDestination": LogsDeliveryDestinationAttributes;
|
186664
187117
|
"AWS::Logs::DeliverySource": LogsDeliverySourceAttributes;
|
186665
187118
|
"AWS::Logs::Destination": LogsDestinationAttributes;
|
187119
|
+
"AWS::Logs::Integration": LogsIntegrationAttributes;
|
186666
187120
|
"AWS::Logs::LogAnomalyDetector": LogsLogAnomalyDetectorAttributes;
|
186667
187121
|
"AWS::Logs::LogGroup": LogsLogGroupAttributes;
|
186668
187122
|
"AWS::Logs::QueryDefinition": LogsQueryDefinitionAttributes;
|
@@ -186720,6 +187174,7 @@ export interface AttributeTypes {
|
|
186720
187174
|
"AWS::MediaTailor::VodSource": MediaTailorVodSourceAttributes;
|
186721
187175
|
"AWS::MemoryDB::ACL": MemoryDBACLAttributes;
|
186722
187176
|
"AWS::MemoryDB::Cluster": MemoryDBClusterAttributes;
|
187177
|
+
"AWS::MemoryDB::MultiRegionCluster": MemoryDBMultiRegionClusterAttributes;
|
186723
187178
|
"AWS::MemoryDB::ParameterGroup": MemoryDBParameterGroupAttributes;
|
186724
187179
|
"AWS::MemoryDB::SubnetGroup": MemoryDBSubnetGroupAttributes;
|
186725
187180
|
"AWS::MemoryDB::User": MemoryDBUserAttributes;
|
@@ -187802,6 +188257,7 @@ export declare const ResourceType: {
|
|
187802
188257
|
readonly InspectorV2CisScanConfiguration: "AWS::InspectorV2::CisScanConfiguration";
|
187803
188258
|
readonly InspectorV2Filter: "AWS::InspectorV2::Filter";
|
187804
188259
|
readonly InternetMonitorMonitor: "AWS::InternetMonitor::Monitor";
|
188260
|
+
readonly InvoicingInvoiceUnit: "AWS::Invoicing::InvoiceUnit";
|
187805
188261
|
readonly IoTAccountAuditConfiguration: "AWS::IoT::AccountAuditConfiguration";
|
187806
188262
|
readonly IoTAuthorizer: "AWS::IoT::Authorizer";
|
187807
188263
|
readonly IoTBillingGroup: "AWS::IoT::BillingGroup";
|
@@ -187955,6 +188411,7 @@ export declare const ResourceType: {
|
|
187955
188411
|
readonly LogsDeliveryDestination: "AWS::Logs::DeliveryDestination";
|
187956
188412
|
readonly LogsDeliverySource: "AWS::Logs::DeliverySource";
|
187957
188413
|
readonly LogsDestination: "AWS::Logs::Destination";
|
188414
|
+
readonly LogsIntegration: "AWS::Logs::Integration";
|
187958
188415
|
readonly LogsLogAnomalyDetector: "AWS::Logs::LogAnomalyDetector";
|
187959
188416
|
readonly LogsLogGroup: "AWS::Logs::LogGroup";
|
187960
188417
|
readonly LogsLogStream: "AWS::Logs::LogStream";
|
@@ -188021,6 +188478,7 @@ export declare const ResourceType: {
|
|
188021
188478
|
readonly MediaTailorVodSource: "AWS::MediaTailor::VodSource";
|
188022
188479
|
readonly MemoryDBACL: "AWS::MemoryDB::ACL";
|
188023
188480
|
readonly MemoryDBCluster: "AWS::MemoryDB::Cluster";
|
188481
|
+
readonly MemoryDBMultiRegionCluster: "AWS::MemoryDB::MultiRegionCluster";
|
188024
188482
|
readonly MemoryDBParameterGroup: "AWS::MemoryDB::ParameterGroup";
|
188025
188483
|
readonly MemoryDBSubnetGroup: "AWS::MemoryDB::SubnetGroup";
|
188026
188484
|
readonly MemoryDBUser: "AWS::MemoryDB::User";
|