@awboost/cfntypes 0.100.357 → 0.100.359

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.
@@ -26993,6 +26993,11 @@ export type BedrockAgentCoreGatewayProps = {
26993
26993
  */
26994
26994
  Description?: string;
26995
26995
  ExceptionLevel?: BedrockAgentCoreGatewayExceptionLevel;
26996
+ /**
26997
+ * @minLength `1`
26998
+ * @maxLength `2`
26999
+ */
27000
+ InterceptorConfigurations?: BedrockAgentCoreGatewayGatewayInterceptorConfiguration[];
26996
27001
  /**
26997
27002
  * @minLength `1`
26998
27003
  * @maxLength `2048`
@@ -27057,7 +27062,7 @@ export type BedrockAgentCoreGatewayAuthorizerConfiguration = {
27057
27062
  * Type definition for `AWS::BedrockAgentCore::Gateway.AuthorizerType`.
27058
27063
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizertype.html}
27059
27064
  */
27060
- export type BedrockAgentCoreGatewayAuthorizerType = "CUSTOM_JWT" | "AWS_IAM";
27065
+ export type BedrockAgentCoreGatewayAuthorizerType = "CUSTOM_JWT" | "AWS_IAM" | "NONE";
27061
27066
  /**
27062
27067
  * Type definition for `AWS::BedrockAgentCore::Gateway.CustomJWTAuthorizerConfiguration`.
27063
27068
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customjwtauthorizerconfiguration.html}
@@ -27081,6 +27086,24 @@ export type BedrockAgentCoreGatewayCustomJWTAuthorizerConfiguration = {
27081
27086
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-exceptionlevel.html}
27082
27087
  */
27083
27088
  export type BedrockAgentCoreGatewayExceptionLevel = "DEBUG";
27089
+ /**
27090
+ * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayInterceptionPoint`.
27091
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayinterceptionpoint.html}
27092
+ */
27093
+ export type BedrockAgentCoreGatewayGatewayInterceptionPoint = "REQUEST" | "RESPONSE";
27094
+ /**
27095
+ * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayInterceptorConfiguration`.
27096
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayinterceptorconfiguration.html}
27097
+ */
27098
+ export type BedrockAgentCoreGatewayGatewayInterceptorConfiguration = {
27099
+ InputConfiguration?: BedrockAgentCoreGatewayInterceptorInputConfiguration;
27100
+ /**
27101
+ * @minLength `1`
27102
+ * @maxLength `2`
27103
+ */
27104
+ InterceptionPoints: BedrockAgentCoreGatewayGatewayInterceptionPoint[];
27105
+ Interceptor: BedrockAgentCoreGatewayInterceptorConfiguration;
27106
+ };
27084
27107
  /**
27085
27108
  * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayProtocolConfiguration`.
27086
27109
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayprotocolconfiguration.html}
@@ -27098,6 +27121,32 @@ export type BedrockAgentCoreGatewayGatewayProtocolType = "MCP";
27098
27121
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewaystatus.html}
27099
27122
  */
27100
27123
  export type BedrockAgentCoreGatewayGatewayStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
27124
+ /**
27125
+ * Type definition for `AWS::BedrockAgentCore::Gateway.InterceptorConfiguration`.
27126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-interceptorconfiguration.html}
27127
+ */
27128
+ export type BedrockAgentCoreGatewayInterceptorConfiguration = {
27129
+ Lambda: BedrockAgentCoreGatewayLambdaInterceptorConfiguration;
27130
+ };
27131
+ /**
27132
+ * Type definition for `AWS::BedrockAgentCore::Gateway.InterceptorInputConfiguration`.
27133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-interceptorinputconfiguration.html}
27134
+ */
27135
+ export type BedrockAgentCoreGatewayInterceptorInputConfiguration = {
27136
+ PassRequestHeaders: boolean;
27137
+ };
27138
+ /**
27139
+ * Type definition for `AWS::BedrockAgentCore::Gateway.LambdaInterceptorConfiguration`.
27140
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-lambdainterceptorconfiguration.html}
27141
+ */
27142
+ export type BedrockAgentCoreGatewayLambdaInterceptorConfiguration = {
27143
+ /**
27144
+ * @minLength `1`
27145
+ * @maxLength `170`
27146
+ * @pattern `^arn:(aws[a-zA-Z-]*)?:lambda:([a-z]{2}(-gov)?-[a-z]+-\d{1}):(\d{12}):function:([a-zA-Z0-9-_.]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
27147
+ */
27148
+ Arn: string;
27149
+ };
27101
27150
  /**
27102
27151
  * Type definition for `AWS::BedrockAgentCore::Gateway.MCPGatewayConfiguration`.
27103
27152
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-mcpgatewayconfiguration.html}
@@ -64676,22 +64725,26 @@ export type EC2NetworkInterfaceTag = {
64676
64725
  Value: string;
64677
64726
  };
64678
64727
  /**
64679
- * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
64728
+ * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
64729
+ * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
64680
64730
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
64681
64731
  */
64682
64732
  export type EC2NetworkInterfaceAttachmentProps = {
64683
64733
  /**
64684
- * Whether to delete the network interface when the instance terminates. By default, this value is set to true.
64734
+ * Whether to delete the network interface when the instance terminates. By default, this value is set to ``true``.
64685
64735
  */
64686
64736
  DeleteOnTermination?: boolean;
64687
64737
  /**
64688
- * The network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
64738
+ * The network interface's position in the attachment order. For example, the first attached network interface has a ``DeviceIndex`` of 0.
64689
64739
  */
64690
64740
  DeviceIndex: string;
64691
64741
  /**
64692
- * The number of ENA queues to be created with the instance.
64742
+ * The number of ENA queues created with the instance.
64693
64743
  */
64694
64744
  EnaQueueCount?: number;
64745
+ /**
64746
+ * Configures ENA Express for the network interface that this action attaches to the instance.
64747
+ */
64695
64748
  EnaSrdSpecification?: EC2NetworkInterfaceAttachmentEnaSrdSpecification;
64696
64749
  /**
64697
64750
  * The ID of the instance to which you will attach the ENI.
@@ -64707,17 +64760,22 @@ export type EC2NetworkInterfaceAttachmentProps = {
64707
64760
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#aws-resource-ec2-networkinterfaceattachment-return-values}
64708
64761
  */
64709
64762
  export type EC2NetworkInterfaceAttachmentAttributes = {
64710
- /**
64711
- * The ID of the network interface attachment.
64712
- */
64713
64763
  AttachmentId: string;
64714
64764
  };
64715
64765
  /**
64716
64766
  * Type definition for `AWS::EC2::NetworkInterfaceAttachment.EnaSrdSpecification`.
64767
+ * ENA Express uses AWS Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.
64768
+ To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.
64717
64769
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterfaceattachment-enasrdspecification.html}
64718
64770
  */
64719
64771
  export type EC2NetworkInterfaceAttachmentEnaSrdSpecification = {
64772
+ /**
64773
+ * Indicates whether ENA Express is enabled for the network interface.
64774
+ */
64720
64775
  EnaSrdEnabled?: boolean;
64776
+ /**
64777
+ * Configures ENA Express for UDP network traffic.
64778
+ */
64721
64779
  EnaSrdUdpSpecification?: {
64722
64780
  EnaSrdUdpEnabled?: boolean;
64723
64781
  };
@@ -69779,7 +69837,7 @@ export type ECRSigningConfigurationRepositoryFilter = {
69779
69837
  * Repository name pattern (supports '*' wildcard).
69780
69838
  * @minLength `1`
69781
69839
  * @maxLength `256`
69782
- * @pattern `^(?=.{1,256}$)(?:[a-z0-9*]+(?:[._-][a-z0-9*]*)/‍*)*[a-z0-9*]*(?:[._-][a-z0-9*]*)*$`
69840
+ * @pattern `^(?:[a-z0-9*]+(?:[._-][a-z0-9*]+)/‍*)*[a-z0-9*]+(?:[._-][a-z0-9*]+)*$`
69783
69841
  */
69784
69842
  Filter: string;
69785
69843
  /**
@@ -70919,6 +70977,8 @@ export type ECSServiceDeploymentConfiguration = {
70919
70977
  * The deployment strategy for the service. Choose from these valid values:
70920
70978
  + ``ROLLING`` - When you create a service which uses the rolling update (``ROLLING``) deployment strategy, the Amazon ECS service scheduler replaces the currently running tasks with new tasks. The number of tasks that Amazon ECS adds or removes from the service during a rolling update is controlled by the service deployment configuration.
70921
70979
  + ``BLUE_GREEN`` - A blue/green deployment strategy (``BLUE_GREEN``) is a release methodology that reduces downtime and risk by running two identical production environments called blue and green. With Amazon ECS blue/green deployments, you can validate new service revisions before directing production traffic to them. This approach provides a safer way to deploy changes with the ability to quickly roll back if needed.
70980
+ + ``LINEAR`` - A *linear* deployment strategy (``LINEAR``) gradually shifts traffic from the current production environment to a new environment in equal percentages over time. With Amazon ECS linear deployments, you can control the pace of traffic shifting and validate new service revisions with increasing amounts of production traffic.
70981
+ + ``CANARY`` - A *canary* deployment strategy (``CANARY``) shifts a small percentage of traffic to the new service revision first, then shifts the remaining traffic all at once after a specified time period. This allows you to test the new version with a subset of users before full deployment.
70922
70982
  */
70923
70983
  Strategy?: "ROLLING" | "BLUE_GREEN" | "LINEAR" | "CANARY";
70924
70984
  };
@@ -89874,6 +89934,468 @@ export type GroundStationDataflowEndpointGroupTag = {
89874
89934
  */
89875
89935
  Value: string;
89876
89936
  };
89937
+ /**
89938
+ * Resource type definition for `AWS::GroundStation::DataflowEndpointGroupV2`.
89939
+ * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2
89940
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html}
89941
+ */
89942
+ export type GroundStationDataflowEndpointGroupV2Props = {
89943
+ /**
89944
+ * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
89945
+ * @min `30`
89946
+ * @max `480`
89947
+ */
89948
+ ContactPostPassDurationSeconds?: number;
89949
+ /**
89950
+ * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
89951
+ * @min `30`
89952
+ * @max `480`
89953
+ */
89954
+ ContactPrePassDurationSeconds?: number;
89955
+ /**
89956
+ * @minLength `1`
89957
+ */
89958
+ Endpoints?: GroundStationDataflowEndpointGroupV2CreateEndpointDetails[];
89959
+ Tags?: GroundStationDataflowEndpointGroupV2Tag[];
89960
+ };
89961
+ /**
89962
+ * Attribute type definition for `AWS::GroundStation::DataflowEndpointGroupV2`.
89963
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html#aws-resource-groundstation-dataflowendpointgroupv2-return-values}
89964
+ */
89965
+ export type GroundStationDataflowEndpointGroupV2Attributes = {
89966
+ /**
89967
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
89968
+ */
89969
+ Arn: string;
89970
+ /**
89971
+ * @minLength `1`
89972
+ */
89973
+ EndpointDetails: {
89974
+ /**
89975
+ * Information about DownlinkAwsGroundStationAgentEndpoint
89976
+ */
89977
+ DownlinkAwsGroundStationAgentEndpoint: {
89978
+ /**
89979
+ * The status of AgentEndpoint.
89980
+ */
89981
+ AgentStatus: GroundStationDataflowEndpointGroupV2AgentStatus;
89982
+ /**
89983
+ * The results of the audit.
89984
+ */
89985
+ AuditResults: GroundStationDataflowEndpointGroupV2AuditResults;
89986
+ /**
89987
+ * Dataflow details for downlink
89988
+ */
89989
+ DataflowDetails: {
89990
+ /**
89991
+ * Connection details for downlink, from ground station to agent, and customer to agent
89992
+ */
89993
+ AgentConnectionDetails: {
89994
+ /**
89995
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
89996
+ */
89997
+ AgentIpAndPortAddress: {
89998
+ /**
89999
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90000
+ * @min `1400`
90001
+ * @max `1500`
90002
+ */
90003
+ Mtu: number;
90004
+ /**
90005
+ * A socket address with a port range.
90006
+ */
90007
+ SocketAddress: {
90008
+ /**
90009
+ * IPv4 socket address.
90010
+ * @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
90011
+ */
90012
+ Name: string;
90013
+ /**
90014
+ * Port range of a socket address.
90015
+ */
90016
+ PortRange: {
90017
+ /**
90018
+ * A maximum value.
90019
+ */
90020
+ Maximum: number;
90021
+ /**
90022
+ * A minimum value.
90023
+ */
90024
+ Minimum: number;
90025
+ };
90026
+ };
90027
+ };
90028
+ /**
90029
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
90030
+ */
90031
+ EgressAddressAndPort: {
90032
+ /**
90033
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90034
+ * @min `1400`
90035
+ * @max `1500`
90036
+ */
90037
+ Mtu: number;
90038
+ SocketAddress: {
90039
+ /**
90040
+ * IPv4 socket address.
90041
+ */
90042
+ Name: string;
90043
+ /**
90044
+ * Port of a socket address.
90045
+ */
90046
+ Port: number;
90047
+ };
90048
+ };
90049
+ };
90050
+ };
90051
+ /**
90052
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90053
+ */
90054
+ Name: string;
90055
+ };
90056
+ /**
90057
+ * Information about UplinkAwsGroundStationAgentEndpoint
90058
+ */
90059
+ UplinkAwsGroundStationAgentEndpoint: {
90060
+ /**
90061
+ * The status of AgentEndpoint.
90062
+ */
90063
+ AgentStatus: GroundStationDataflowEndpointGroupV2AgentStatus;
90064
+ /**
90065
+ * The results of the audit.
90066
+ */
90067
+ AuditResults: GroundStationDataflowEndpointGroupV2AuditResults;
90068
+ /**
90069
+ * Dataflow details for uplink
90070
+ */
90071
+ DataflowDetails: {
90072
+ /**
90073
+ * Connection details for uplink, from ground station to agent, and customer to agent
90074
+ */
90075
+ AgentConnectionDetails: {
90076
+ /**
90077
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
90078
+ */
90079
+ AgentIpAndPortAddress: {
90080
+ /**
90081
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90082
+ * @min `1400`
90083
+ * @max `1500`
90084
+ */
90085
+ Mtu: number;
90086
+ /**
90087
+ * A socket address with a port range.
90088
+ */
90089
+ SocketAddress: {
90090
+ /**
90091
+ * IPv4 socket address.
90092
+ * @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
90093
+ */
90094
+ Name: string;
90095
+ /**
90096
+ * Port range of a socket address.
90097
+ */
90098
+ PortRange: {
90099
+ /**
90100
+ * A maximum value.
90101
+ */
90102
+ Maximum: number;
90103
+ /**
90104
+ * A minimum value.
90105
+ */
90106
+ Minimum: number;
90107
+ };
90108
+ };
90109
+ };
90110
+ /**
90111
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
90112
+ */
90113
+ IngressAddressAndPort: {
90114
+ /**
90115
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90116
+ * @min `1400`
90117
+ * @max `1500`
90118
+ */
90119
+ Mtu: number;
90120
+ SocketAddress: {
90121
+ /**
90122
+ * IPv4 socket address.
90123
+ */
90124
+ Name: string;
90125
+ /**
90126
+ * Port of a socket address.
90127
+ */
90128
+ Port: number;
90129
+ };
90130
+ };
90131
+ };
90132
+ };
90133
+ /**
90134
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90135
+ */
90136
+ Name: string;
90137
+ };
90138
+ }[];
90139
+ Id: string;
90140
+ };
90141
+ /**
90142
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.AgentStatus`.
90143
+ * The status of AgentEndpoint.
90144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-agentstatus.html}
90145
+ */
90146
+ export type GroundStationDataflowEndpointGroupV2AgentStatus = "SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE";
90147
+ /**
90148
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.AuditResults`.
90149
+ * The results of the audit.
90150
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-auditresults.html}
90151
+ */
90152
+ export type GroundStationDataflowEndpointGroupV2AuditResults = "HEALTHY" | "UNHEALTHY";
90153
+ /**
90154
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.ConnectionDetails`.
90155
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
90156
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-connectiondetails.html}
90157
+ */
90158
+ export type GroundStationDataflowEndpointGroupV2ConnectionDetails = {
90159
+ /**
90160
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90161
+ * @min `1400`
90162
+ * @max `1500`
90163
+ */
90164
+ Mtu?: number;
90165
+ SocketAddress: GroundStationDataflowEndpointGroupV2SocketAddress;
90166
+ };
90167
+ /**
90168
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.CreateEndpointDetails`.
90169
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html}
90170
+ */
90171
+ export type GroundStationDataflowEndpointGroupV2CreateEndpointDetails = {
90172
+ /**
90173
+ * Information about DownlinkAwsGroundStationAgentEndpoint used for create
90174
+ */
90175
+ DownlinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpoint;
90176
+ /**
90177
+ * Information about UplinkAwsGroundStationAgentEndpoint used for create
90178
+ */
90179
+ UplinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpoint;
90180
+ };
90181
+ /**
90182
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpoint`.
90183
+ * Information about DownlinkAwsGroundStationAgentEndpoint used for create
90184
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint.html}
90185
+ */
90186
+ export type GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpoint = {
90187
+ /**
90188
+ * Dataflow details for downlink
90189
+ */
90190
+ DataflowDetails: GroundStationDataflowEndpointGroupV2DownlinkDataflowDetails;
90191
+ /**
90192
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90193
+ */
90194
+ Name: string;
90195
+ };
90196
+ /**
90197
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointDetails`.
90198
+ * Information about DownlinkAwsGroundStationAgentEndpoint
90199
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails.html}
90200
+ */
90201
+ export type GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpointDetails = {
90202
+ /**
90203
+ * The status of AgentEndpoint.
90204
+ */
90205
+ AgentStatus?: GroundStationDataflowEndpointGroupV2AgentStatus;
90206
+ /**
90207
+ * The results of the audit.
90208
+ */
90209
+ AuditResults?: GroundStationDataflowEndpointGroupV2AuditResults;
90210
+ /**
90211
+ * Dataflow details for downlink
90212
+ */
90213
+ DataflowDetails: GroundStationDataflowEndpointGroupV2DownlinkDataflowDetails;
90214
+ /**
90215
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90216
+ */
90217
+ Name: string;
90218
+ };
90219
+ /**
90220
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkConnectionDetails`.
90221
+ * Connection details for downlink, from ground station to agent, and customer to agent
90222
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails.html}
90223
+ */
90224
+ export type GroundStationDataflowEndpointGroupV2DownlinkConnectionDetails = {
90225
+ /**
90226
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
90227
+ */
90228
+ AgentIpAndPortAddress: GroundStationDataflowEndpointGroupV2RangedConnectionDetails;
90229
+ /**
90230
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
90231
+ */
90232
+ EgressAddressAndPort: GroundStationDataflowEndpointGroupV2ConnectionDetails;
90233
+ };
90234
+ /**
90235
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkDataflowDetails`.
90236
+ * Dataflow details for downlink
90237
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkdataflowdetails.html}
90238
+ */
90239
+ export type GroundStationDataflowEndpointGroupV2DownlinkDataflowDetails = {
90240
+ /**
90241
+ * Connection details for downlink, from ground station to agent, and customer to agent
90242
+ */
90243
+ AgentConnectionDetails?: GroundStationDataflowEndpointGroupV2DownlinkConnectionDetails;
90244
+ };
90245
+ /**
90246
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.EndpointDetails`.
90247
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-endpointdetails.html}
90248
+ */
90249
+ export type GroundStationDataflowEndpointGroupV2EndpointDetails = {
90250
+ /**
90251
+ * Information about DownlinkAwsGroundStationAgentEndpoint
90252
+ */
90253
+ DownlinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpointDetails;
90254
+ /**
90255
+ * Information about UplinkAwsGroundStationAgentEndpoint
90256
+ */
90257
+ UplinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpointDetails;
90258
+ };
90259
+ /**
90260
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.IntegerRange`.
90261
+ * An integer range that has a minimum and maximum value.
90262
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-integerrange.html}
90263
+ */
90264
+ export type GroundStationDataflowEndpointGroupV2IntegerRange = {
90265
+ /**
90266
+ * A maximum value.
90267
+ */
90268
+ Maximum: number;
90269
+ /**
90270
+ * A minimum value.
90271
+ */
90272
+ Minimum: number;
90273
+ };
90274
+ /**
90275
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.RangedConnectionDetails`.
90276
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
90277
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedconnectiondetails.html}
90278
+ */
90279
+ export type GroundStationDataflowEndpointGroupV2RangedConnectionDetails = {
90280
+ /**
90281
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90282
+ * @min `1400`
90283
+ * @max `1500`
90284
+ */
90285
+ Mtu?: number;
90286
+ /**
90287
+ * A socket address with a port range.
90288
+ */
90289
+ SocketAddress: GroundStationDataflowEndpointGroupV2RangedSocketAddress;
90290
+ };
90291
+ /**
90292
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.RangedSocketAddress`.
90293
+ * A socket address with a port range.
90294
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedsocketaddress.html}
90295
+ */
90296
+ export type GroundStationDataflowEndpointGroupV2RangedSocketAddress = {
90297
+ /**
90298
+ * IPv4 socket address.
90299
+ * @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
90300
+ */
90301
+ Name: string;
90302
+ /**
90303
+ * Port range of a socket address.
90304
+ */
90305
+ PortRange: GroundStationDataflowEndpointGroupV2IntegerRange;
90306
+ };
90307
+ /**
90308
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.SocketAddress`.
90309
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-socketaddress.html}
90310
+ */
90311
+ export type GroundStationDataflowEndpointGroupV2SocketAddress = {
90312
+ /**
90313
+ * IPv4 socket address.
90314
+ */
90315
+ Name: string;
90316
+ /**
90317
+ * Port of a socket address.
90318
+ */
90319
+ Port: number;
90320
+ };
90321
+ /**
90322
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.Tag`.
90323
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-tag.html}
90324
+ */
90325
+ export type GroundStationDataflowEndpointGroupV2Tag = {
90326
+ /**
90327
+ * @pattern `^[ a-zA-Z0-9\+\-=._:/@]{1,128}$`
90328
+ */
90329
+ Key: string;
90330
+ /**
90331
+ * @pattern `^[ a-zA-Z0-9\+\-=._:/@]{1,256}$`
90332
+ */
90333
+ Value: string;
90334
+ };
90335
+ /**
90336
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpoint`.
90337
+ * Information about UplinkAwsGroundStationAgentEndpoint used for create
90338
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint.html}
90339
+ */
90340
+ export type GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpoint = {
90341
+ /**
90342
+ * Dataflow details for uplink
90343
+ */
90344
+ DataflowDetails: GroundStationDataflowEndpointGroupV2UplinkDataflowDetails;
90345
+ /**
90346
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90347
+ */
90348
+ Name: string;
90349
+ };
90350
+ /**
90351
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetails`.
90352
+ * Information about UplinkAwsGroundStationAgentEndpoint
90353
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails.html}
90354
+ */
90355
+ export type GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpointDetails = {
90356
+ /**
90357
+ * The status of AgentEndpoint.
90358
+ */
90359
+ AgentStatus?: GroundStationDataflowEndpointGroupV2AgentStatus;
90360
+ /**
90361
+ * The results of the audit.
90362
+ */
90363
+ AuditResults?: GroundStationDataflowEndpointGroupV2AuditResults;
90364
+ /**
90365
+ * Dataflow details for uplink
90366
+ */
90367
+ DataflowDetails: GroundStationDataflowEndpointGroupV2UplinkDataflowDetails;
90368
+ /**
90369
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90370
+ */
90371
+ Name: string;
90372
+ };
90373
+ /**
90374
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkConnectionDetails`.
90375
+ * Connection details for uplink, from ground station to agent, and customer to agent
90376
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails.html}
90377
+ */
90378
+ export type GroundStationDataflowEndpointGroupV2UplinkConnectionDetails = {
90379
+ /**
90380
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
90381
+ */
90382
+ AgentIpAndPortAddress: GroundStationDataflowEndpointGroupV2RangedConnectionDetails;
90383
+ /**
90384
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
90385
+ */
90386
+ IngressAddressAndPort: GroundStationDataflowEndpointGroupV2ConnectionDetails;
90387
+ };
90388
+ /**
90389
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkDataflowDetails`.
90390
+ * Dataflow details for uplink
90391
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkdataflowdetails.html}
90392
+ */
90393
+ export type GroundStationDataflowEndpointGroupV2UplinkDataflowDetails = {
90394
+ /**
90395
+ * Connection details for uplink, from ground station to agent, and customer to agent
90396
+ */
90397
+ AgentConnectionDetails?: GroundStationDataflowEndpointGroupV2UplinkConnectionDetails;
90398
+ };
89877
90399
  /**
89878
90400
  * Resource type definition for `AWS::GroundStation::MissionProfile`.
89879
90401
  * AWS Ground Station Mission Profile resource type for CloudFormation.
@@ -105128,6 +105650,10 @@ export type KafkaConnectConnectorProps = {
105128
105650
  * Details of what logs are delivered and where they are delivered.
105129
105651
  */
105130
105652
  LogDelivery?: KafkaConnectConnectorLogDelivery;
105653
+ /**
105654
+ * The network type of the Connector.
105655
+ */
105656
+ NetworkType?: "IPV4" | "DUAL";
105131
105657
  /**
105132
105658
  * List of plugins to use with the connector.
105133
105659
  * @minLength `1`
@@ -117801,7 +118327,7 @@ export type LogsTransformerMoveKeyEntry = {
117801
118327
  * Type definition for `AWS::Logs::Transformer.OcsfVersion`.
117802
118328
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-ocsfversion.html}
117803
118329
  */
117804
- export type LogsTransformerOcsfVersion = "V1.1";
118330
+ export type LogsTransformerOcsfVersion = "V1.1" | "V1.5";
117805
118331
  /**
117806
118332
  * Type definition for `AWS::Logs::Transformer.ParseCloudfront`.
117807
118333
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsecloudfront.html}
@@ -117838,6 +118364,12 @@ export type LogsTransformerParseRoute53 = {
117838
118364
  */
117839
118365
  export type LogsTransformerParseToOCSF = {
117840
118366
  EventSource: LogsTransformerEventSource;
118367
+ /**
118368
+ * @minLength `1`
118369
+ * @maxLength `10`
118370
+ * @pattern `^v\d+\.\d+(\.\d+)?$`
118371
+ */
118372
+ MappingVersion?: string;
117841
118373
  OcsfVersion: LogsTransformerOcsfVersion;
117842
118374
  /**
117843
118375
  * @pattern `^.*[a-zA-Z0-9]+.*$`
@@ -181819,6 +182351,10 @@ export type Route53ResolverResolverEndpointProps = {
181819
182351
  * The Resolver endpoint IP address type.
181820
182352
  */
181821
182353
  ResolverEndpointType?: "IPV6" | "IPV4" | "DUALSTACK";
182354
+ /**
182355
+ * Specifies whether RNI enhanced metrics are enabled for the Resolver Endpoints. When set to true, one-minute granular metrics are published in CloudWatch for each RNI associated with this endpoint. When set to false, metrics are not published. Default is false.
182356
+ */
182357
+ RniEnhancedMetricsEnabled?: boolean;
181822
182358
  /**
181823
182359
  * The ID of one or more security groups that control access to this VPC. The security group must include one or more inbound rules (for inbound endpoints) or outbound rules (for outbound endpoints). Inbound and outbound rules must allow TCP and UDP access. For inbound access, open port 53. For outbound access, open the port that you're using for DNS queries on your network.
181824
182360
  */
@@ -181827,6 +182363,10 @@ export type Route53ResolverResolverEndpointProps = {
181827
182363
  * An array of key-value pairs to apply to this resource.
181828
182364
  */
181829
182365
  Tags?: Route53ResolverResolverEndpointTag[];
182366
+ /**
182367
+ * Specifies whether target name server metrics are enabled for the Outbound Resolver Endpoint. When set to true, one-minute granular metrics are published in CloudWatch for each target name server associated with this endpoint. When set to false, metrics are not published. Default is false.
182368
+ */
182369
+ TargetNameServerMetricsEnabled?: boolean;
181830
182370
  };
181831
182371
  /**
181832
182372
  * Attribute type definition for `AWS::Route53Resolver::ResolverEndpoint`.
@@ -182131,8 +182671,9 @@ export type Route53ResolverResolverRuleTargetAddress = {
182131
182671
  */
182132
182672
  export type Route53ResolverResolverRuleAssociationProps = {
182133
182673
  /**
182134
- * The name of an association between a Resolver rule and a VPC.
182135
- */
182674
+ * The name of an association between a Resolver rule and a VPC.
182675
+ The name can be up to 64 characters long and can contain letters (a-z, A-Z), numbers (0-9), hyphens (-), underscores (_), and spaces. The name cannot consist of only numbers.
182676
+ */
182136
182677
  Name?: string;
182137
182678
  /**
182138
182679
  * The ID of the Resolver rule that you associated with the VPC that is specified by ``VPCId``.
@@ -183515,6 +184056,9 @@ export type S3AccessPointVpcConfiguration = {
183515
184056
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html}
183516
184057
  */
183517
184058
  export type S3BucketProps = {
184059
+ /**
184060
+ * The ABAC status of the general purpose bucket. When ABAC is enabled for the general purpose bucket, you can use tags to manage access to the general purpose buckets as well as for cost tracking purposes. When ABAC is disabled for the general purpose buckets, you can only use tags for cost tracking purposes. For more information, see [Using tags with S3 general purpose buckets](https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging.html).
184061
+ */
183518
184062
  AbacStatus?: "Enabled" | "Disabled";
183519
184063
  /**
183520
184064
  * Configures the transfer acceleration state for an Amazon S3 bucket. For more information, see [Amazon S3 Transfer Acceleration](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html) in the *Amazon S3 User Guide*.
@@ -183757,12 +184301,20 @@ export type S3BucketAnalyticsConfiguration = {
183757
184301
  };
183758
184302
  /**
183759
184303
  * Type definition for `AWS::S3::Bucket.BlockedEncryptionTypes`.
184304
+ * A bucket-level setting for Amazon S3 general purpose buckets used to prevent the upload of new objects encrypted with the specified server-side encryption type. For example, blocking an encryption type will block ``PutObject``, ``CopyObject``, ``PostObject``, multipart upload, and replication requests to the bucket for objects with the specified encryption type. However, you can continue to read and list any pre-existing objects already encrypted with the specified encryption type. For more information, see [Blocking or unblocking SSE-C for a general purpose bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html).
184305
+ This data type is used with the following actions:
184306
+ + [PutBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html)
184307
+ + [GetBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html)
184308
+ + [DeleteBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketEncryption.html)
184309
+
184310
+ + Permissions You must have the s3:PutEncryptionConfiguration permission to block or unblock an encryption type for a bucket. You must have the s3:GetEncryptionConfiguration permission to view a bucket's encryption type.
183760
184311
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-blockedencryptiontypes.html}
183761
184312
  */
183762
184313
  export type S3BucketBlockedEncryptionTypes = {
183763
184314
  /**
183764
- * List of encryption types.
183765
- */
184315
+ * The object encryption type that you want to block or unblock for an Amazon S3 general purpose bucket.
184316
+ Currently, this parameter only supports blocking or unblocking server side encryption with customer-provided keys (SSE-C). For more information about SSE-C, see [Using server-side encryption with customer-provided keys (SSE-C)](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html).
184317
+ */
183766
184318
  EncryptionType?: ("NONE" | "SSE-C")[];
183767
184319
  };
183768
184320
  /**
@@ -183989,7 +184541,7 @@ export type S3BucketInventoryConfiguration = {
183989
184541
  /**
183990
184542
  * Contains the optional fields that are included in the inventory results.
183991
184543
  */
183992
- OptionalFields?: ("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner")[];
184544
+ OptionalFields?: ("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner" | "LifecycleExpirationDate")[];
183993
184545
  /**
183994
184546
  * Specifies the inventory filter prefix.
183995
184547
  */
@@ -184327,7 +184879,7 @@ export type S3BucketPartitionedPrefix = {
184327
184879
  };
184328
184880
  /**
184329
184881
  * Type definition for `AWS::S3::Bucket.PublicAccessBlockConfiguration`.
184330
- * The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of "Public"](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status) in the *Amazon S3 User Guide*.
184882
+ * The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. Bucket-level settings work alongside account-level settings (which may inherit from organization-level policies). For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of "Public"](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status) in the *Amazon S3 User Guide*.
184331
184883
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html}
184332
184884
  */
184333
184885
  export type S3BucketPublicAccessBlockConfiguration = {
@@ -184791,6 +185343,10 @@ export type S3BucketServerSideEncryptionByDefault = {
184791
185343
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionrule.html}
184792
185344
  */
184793
185345
  export type S3BucketServerSideEncryptionRule = {
185346
+ /**
185347
+ * A bucket-level setting for Amazon S3 general purpose buckets used to prevent the upload of new objects encrypted with the specified server-side encryption type. For example, blocking an encryption type will block ``PutObject``, ``CopyObject``, ``PostObject``, multipart upload, and replication requests to the bucket for objects with the specified encryption type. However, you can continue to read and list any pre-existing objects already encrypted with the specified encryption type. For more information, see [Blocking or unblocking SSE-C for a general purpose bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html).
185348
+ Currently, this parameter only supports blocking or unblocking server-side encryption with customer-provided keys (SSE-C). For more information about SSE-C, see [Using server-side encryption with customer-provided keys (SSE-C)](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html).
185349
+ */
184794
185350
  BlockedEncryptionTypes?: S3BucketBlockedEncryptionTypes;
184795
185351
  /**
184796
185352
  * Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects are not affected. Setting the ``BucketKeyEnabled`` element to ``true`` causes Amazon S3 to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled.
@@ -197436,6 +197992,9 @@ export type SecretsManagerSecretProps = {
197436
197992
  + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
197437
197993
  */
197438
197994
  Tags?: SecretsManagerSecretTag[];
197995
+ /**
197996
+ * The exact string that identifies the third-party partner that holds the external secret. For more information, see [Managed external secret partners](https://docs.aws.amazon.com/secretsmanager/latest/userguide/mes-partners.html).
197997
+ */
197439
197998
  Type?: string;
197440
197999
  };
197441
198000
  /**
@@ -203192,6 +203751,72 @@ export type SESTemplateTemplate = {
203192
203751
  */
203193
203752
  TextPart?: string;
203194
203753
  };
203754
+ /**
203755
+ * Resource Type definition for AWS::SES::Tenant
203756
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html}
203757
+ */
203758
+ export type SESTenantProps = {
203759
+ /**
203760
+ * The list of resources to associate with the tenant.
203761
+ * @minLength `0`
203762
+ */
203763
+ ResourceAssociations?: SESTenantResourceAssociation[];
203764
+ /**
203765
+ * The tags (keys and values) associated with the tenant.
203766
+ * @minLength `0`
203767
+ * @maxLength `50`
203768
+ */
203769
+ Tags?: SESTenantTag[];
203770
+ /**
203771
+ * The name of the tenant.
203772
+ * @minLength `1`
203773
+ * @maxLength `64`
203774
+ * @pattern `^[\w\-_]+$`
203775
+ */
203776
+ TenantName: string;
203777
+ };
203778
+ /**
203779
+ * Attribute type definition for `AWS::SES::Tenant`.
203780
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html#aws-resource-ses-tenant-return-values}
203781
+ */
203782
+ export type SESTenantAttributes = {
203783
+ /**
203784
+ * Amazon Resource Name (ARN) of the tenant.
203785
+ * @minLength `1`
203786
+ */
203787
+ Arn: string;
203788
+ };
203789
+ /**
203790
+ * Type definition for `AWS::SES::Tenant.ResourceAssociation`.
203791
+ * The resource to associate with the tenant
203792
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-tenant-resourceassociation.html}
203793
+ */
203794
+ export type SESTenantResourceAssociation = {
203795
+ /**
203796
+ * The ARN of the resource to associate with the tenant
203797
+ * @minLength `1`
203798
+ */
203799
+ ResourceArn: string;
203800
+ };
203801
+ /**
203802
+ * Type definition for `AWS::SES::Tenant.Tag`.
203803
+ * An object that defines the tags (keys and values) that you want to associate with the tenant.
203804
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-tenant-tag.html}
203805
+ */
203806
+ export type SESTenantTag = {
203807
+ /**
203808
+ * The key of the key-value tag.
203809
+ * @minLength `1`
203810
+ * @maxLength `128`
203811
+ */
203812
+ Key: string;
203813
+ /**
203814
+ * The value of the key-value tag.
203815
+ * @minLength `0`
203816
+ * @maxLength `256`
203817
+ */
203818
+ Value: string;
203819
+ };
203195
203820
  /**
203196
203821
  * Resource Type definition for AWS::SES::VdmAttributes
203197
203822
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-vdmattributes.html}
@@ -204883,15 +205508,33 @@ export type SSMMaintenanceWindowTag = {
204883
205508
  Value: string;
204884
205509
  };
204885
205510
  /**
204886
- * Resource Type definition for AWS::SSM::MaintenanceWindowTarget
205511
+ * Resource type definition for AWS::SSM::MaintenanceWindowTarget
204887
205512
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html}
204888
205513
  */
204889
205514
  export type SSMMaintenanceWindowTargetProps = {
205515
+ /**
205516
+ * A description for the target.
205517
+ */
204890
205518
  Description?: string;
205519
+ /**
205520
+ * The name for the maintenance window target.
205521
+ */
204891
205522
  Name?: string;
205523
+ /**
205524
+ * A user-provided value that will be included in any Amazon CloudWatch Events events that are raised while running tasks for these targets in this maintenance window.
205525
+ */
204892
205526
  OwnerInformation?: string;
205527
+ /**
205528
+ * The type of target that is being registered with the maintenance window.
205529
+ */
204893
205530
  ResourceType: string;
205531
+ /**
205532
+ * The targets to register with the maintenance window.
205533
+ */
204894
205534
  Targets: SSMMaintenanceWindowTargetTargets[];
205535
+ /**
205536
+ * The ID of the maintenance window to register the target with.
205537
+ */
204895
205538
  WindowId: string;
204896
205539
  };
204897
205540
  /**
@@ -204899,14 +205542,23 @@ export type SSMMaintenanceWindowTargetProps = {
204899
205542
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#aws-resource-ssm-maintenancewindowtarget-return-values}
204900
205543
  */
204901
205544
  export type SSMMaintenanceWindowTargetAttributes = {
204902
- Id: string;
205545
+ /**
205546
+ * The ID of the target.
205547
+ */
205548
+ WindowTargetId: string;
204903
205549
  };
204904
205550
  /**
204905
205551
  * Type definition for `AWS::SSM::MaintenanceWindowTarget.Targets`.
204906
205552
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtarget-targets.html}
204907
205553
  */
204908
205554
  export type SSMMaintenanceWindowTargetTargets = {
205555
+ /**
205556
+ * User-defined criteria for sending commands that target managed nodes that meet the criteria.
205557
+ */
204909
205558
  Key: string;
205559
+ /**
205560
+ * User-defined criteria that maps to Key.
205561
+ */
204910
205562
  Values: string[];
204911
205563
  };
204912
205564
  /**
@@ -204914,19 +205566,61 @@ export type SSMMaintenanceWindowTargetTargets = {
204914
205566
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html}
204915
205567
  */
204916
205568
  export type SSMMaintenanceWindowTaskProps = {
205569
+ /**
205570
+ * The specification for whether tasks should continue to run after the cutoff time specified in the maintenance windows is reached.
205571
+ */
204917
205572
  CutoffBehavior?: string;
205573
+ /**
205574
+ * A description of the task.
205575
+ */
204918
205576
  Description?: string;
205577
+ /**
205578
+ * Information about an Amazon S3 bucket to write Run Command task-level logs to.
205579
+ */
204919
205580
  LoggingInfo?: SSMMaintenanceWindowTaskLoggingInfo;
205581
+ /**
205582
+ * The maximum number of targets this task can be run for, in parallel.
205583
+ */
204920
205584
  MaxConcurrency?: string;
205585
+ /**
205586
+ * The maximum number of errors allowed before this task stops being scheduled.
205587
+ */
204921
205588
  MaxErrors?: string;
205589
+ /**
205590
+ * The task name.
205591
+ */
204922
205592
  Name?: string;
205593
+ /**
205594
+ * The priority of the task in the maintenance window. The lower the number, the higher the priority. Tasks that have the same priority are scheduled in parallel.
205595
+ */
204923
205596
  Priority: number;
205597
+ /**
205598
+ * The Amazon Resource Name (ARN) of the IAM service role for AWS Systems Manager to assume when running a maintenance window task.
205599
+ */
204924
205600
  ServiceRoleArn?: string;
205601
+ /**
205602
+ * The targets (either instances or window target ids).
205603
+ */
204925
205604
  Targets?: SSMMaintenanceWindowTaskTarget[];
205605
+ /**
205606
+ * The resource that the task uses during execution.
205607
+ */
204926
205608
  TaskArn: string;
205609
+ /**
205610
+ * The parameters to pass to the task when it runs. Populate only the fields that match the task type. All other fields should be empty.
205611
+ */
204927
205612
  TaskInvocationParameters?: SSMMaintenanceWindowTaskTaskInvocationParameters;
205613
+ /**
205614
+ * The parameters to pass to the task when it runs.
205615
+ */
204928
205616
  TaskParameters?: Record<string, any>;
205617
+ /**
205618
+ * The type of task.
205619
+ */
204929
205620
  TaskType: string;
205621
+ /**
205622
+ * The ID of the maintenance window where the task is registered.
205623
+ */
204930
205624
  WindowId: string;
204931
205625
  };
204932
205626
  /**
@@ -204934,14 +205628,23 @@ export type SSMMaintenanceWindowTaskProps = {
204934
205628
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#aws-resource-ssm-maintenancewindowtask-return-values}
204935
205629
  */
204936
205630
  export type SSMMaintenanceWindowTaskAttributes = {
204937
- Id: string;
205631
+ /**
205632
+ * Unique identifier of the maintenance window task.
205633
+ */
205634
+ WindowTaskId: string;
204938
205635
  };
204939
205636
  /**
204940
205637
  * Type definition for `AWS::SSM::MaintenanceWindowTask.CloudWatchOutputConfig`.
204941
205638
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-cloudwatchoutputconfig.html}
204942
205639
  */
204943
205640
  export type SSMMaintenanceWindowTaskCloudWatchOutputConfig = {
205641
+ /**
205642
+ * The name of the CloudWatch log group where you want to send command output.
205643
+ */
204944
205644
  CloudWatchLogGroupName?: string;
205645
+ /**
205646
+ * Enables Systems Manager to send command output to CloudWatch Logs.
205647
+ */
204945
205648
  CloudWatchOutputEnabled?: boolean;
204946
205649
  };
204947
205650
  /**
@@ -219780,6 +220483,7 @@ export interface ResourceTypes {
219780
220483
  "AWS::GreengrassV2::Deployment": GreengrassV2DeploymentProps;
219781
220484
  "AWS::GroundStation::Config": GroundStationConfigProps;
219782
220485
  "AWS::GroundStation::DataflowEndpointGroup": GroundStationDataflowEndpointGroupProps;
220486
+ "AWS::GroundStation::DataflowEndpointGroupV2": GroundStationDataflowEndpointGroupV2Props;
219783
220487
  "AWS::GroundStation::MissionProfile": GroundStationMissionProfileProps;
219784
220488
  "AWS::GuardDuty::Detector": GuardDutyDetectorProps;
219785
220489
  "AWS::GuardDuty::Filter": GuardDutyFilterProps;
@@ -220429,6 +221133,7 @@ export interface ResourceTypes {
220429
221133
  "AWS::SES::ReceiptRule": SESReceiptRuleProps;
220430
221134
  "AWS::SES::ReceiptRuleSet": SESReceiptRuleSetProps;
220431
221135
  "AWS::SES::Template": SESTemplateProps;
221136
+ "AWS::SES::Tenant": SESTenantProps;
220432
221137
  "AWS::SES::VdmAttributes": SESVdmAttributesProps;
220433
221138
  "AWS::Shield::DRTAccess": ShieldDRTAccessProps;
220434
221139
  "AWS::Shield::ProactiveEngagement": ShieldProactiveEngagementProps;
@@ -221201,6 +221906,7 @@ export interface AttributeTypes {
221201
221906
  "AWS::GreengrassV2::Deployment": GreengrassV2DeploymentAttributes;
221202
221907
  "AWS::GroundStation::Config": GroundStationConfigAttributes;
221203
221908
  "AWS::GroundStation::DataflowEndpointGroup": GroundStationDataflowEndpointGroupAttributes;
221909
+ "AWS::GroundStation::DataflowEndpointGroupV2": GroundStationDataflowEndpointGroupV2Attributes;
221204
221910
  "AWS::GroundStation::MissionProfile": GroundStationMissionProfileAttributes;
221205
221911
  "AWS::GuardDuty::Detector": GuardDutyDetectorAttributes;
221206
221912
  "AWS::GuardDuty::IPSet": GuardDutyIPSetAttributes;
@@ -221771,6 +222477,7 @@ export interface AttributeTypes {
221771
222477
  "AWS::SES::ReceiptRule": SESReceiptRuleAttributes;
221772
222478
  "AWS::SES::ReceiptRuleSet": SESReceiptRuleSetAttributes;
221773
222479
  "AWS::SES::Template": SESTemplateAttributes;
222480
+ "AWS::SES::Tenant": SESTenantAttributes;
221774
222481
  "AWS::SES::VdmAttributes": SESVdmAttributesAttributes;
221775
222482
  "AWS::Shield::DRTAccess": ShieldDRTAccessAttributes;
221776
222483
  "AWS::Shield::ProactiveEngagement": ShieldProactiveEngagementAttributes;
@@ -222604,6 +223311,7 @@ export declare const ResourceType: {
222604
223311
  readonly GreengrassV2Deployment: "AWS::GreengrassV2::Deployment";
222605
223312
  readonly GroundStationConfig: "AWS::GroundStation::Config";
222606
223313
  readonly GroundStationDataflowEndpointGroup: "AWS::GroundStation::DataflowEndpointGroup";
223314
+ readonly GroundStationDataflowEndpointGroupV2: "AWS::GroundStation::DataflowEndpointGroupV2";
222607
223315
  readonly GroundStationMissionProfile: "AWS::GroundStation::MissionProfile";
222608
223316
  readonly GuardDutyDetector: "AWS::GuardDuty::Detector";
222609
223317
  readonly GuardDutyFilter: "AWS::GuardDuty::Filter";
@@ -223253,6 +223961,7 @@ export declare const ResourceType: {
223253
223961
  readonly SESReceiptRule: "AWS::SES::ReceiptRule";
223254
223962
  readonly SESReceiptRuleSet: "AWS::SES::ReceiptRuleSet";
223255
223963
  readonly SESTemplate: "AWS::SES::Template";
223964
+ readonly SESTenant: "AWS::SES::Tenant";
223256
223965
  readonly SESVdmAttributes: "AWS::SES::VdmAttributes";
223257
223966
  readonly ShieldDRTAccess: "AWS::Shield::DRTAccess";
223258
223967
  readonly ShieldProactiveEngagement: "AWS::Shield::ProactiveEngagement";