cdk-lambda-subminute 2.0.258 → 2.0.259
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +8 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +45 -112
- package/node_modules/aws-sdk/apis/route53-2013-04-01.min.json +14 -10
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +324 -61
- package/node_modules/aws-sdk/apis/storagegateway-2013-06-30.min.json +13 -11
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +421 -105
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.paginators.json +10 -0
- package/node_modules/aws-sdk/clients/omics.d.ts +23 -0
- package/node_modules/aws-sdk/clients/rds.d.ts +225 -225
- package/node_modules/aws-sdk/clients/route53.d.ts +17 -12
- package/node_modules/aws-sdk/clients/securityhub.d.ts +484 -0
- package/node_modules/aws-sdk/clients/storagegateway.d.ts +18 -13
- package/node_modules/aws-sdk/clients/workspaces.d.ts +431 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +7 -7
- package/node_modules/aws-sdk/dist/aws-sdk.js +30 -24
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +17 -17
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -3115,6 +3115,177 @@ declare namespace SecurityHub {
|
|
3115
3115
|
*/
|
3116
3116
|
AllowHeaders?: NonEmptyStringList;
|
3117
3117
|
}
|
3118
|
+
export interface AwsDmsEndpointDetails {
|
3119
|
+
/**
|
3120
|
+
* The Amazon Resource Name (ARN) for the SSL certificate that encrypts connections between the DMS endpoint and the replication instance.
|
3121
|
+
*/
|
3122
|
+
CertificateArn?: NonEmptyString;
|
3123
|
+
/**
|
3124
|
+
* The name of the endpoint database.
|
3125
|
+
*/
|
3126
|
+
DatabaseName?: NonEmptyString;
|
3127
|
+
/**
|
3128
|
+
* The Amazon Resource Name (ARN) of the endpoint.
|
3129
|
+
*/
|
3130
|
+
EndpointArn?: NonEmptyString;
|
3131
|
+
/**
|
3132
|
+
* The database endpoint identifier.
|
3133
|
+
*/
|
3134
|
+
EndpointIdentifier?: NonEmptyString;
|
3135
|
+
/**
|
3136
|
+
* The type of endpoint. Valid values are source and target.
|
3137
|
+
*/
|
3138
|
+
EndpointType?: NonEmptyString;
|
3139
|
+
/**
|
3140
|
+
* The type of engine for the endpoint, depending on the EndpointType value.
|
3141
|
+
*/
|
3142
|
+
EngineName?: NonEmptyString;
|
3143
|
+
/**
|
3144
|
+
* A value that can be used for cross-account validation.
|
3145
|
+
*/
|
3146
|
+
ExternalId?: NonEmptyString;
|
3147
|
+
/**
|
3148
|
+
* Additional attributes associated with the connection.
|
3149
|
+
*/
|
3150
|
+
ExtraConnectionAttributes?: NonEmptyString;
|
3151
|
+
/**
|
3152
|
+
* An DMS key identifier that is used to encrypt the connection parameters for the endpoint. If you don't specify a value for the KmsKeyId parameter, then DMS uses your default encryption key. KMS creates the default encryption key for your Amazon Web Services account. Your Amazon Web Services account has a different default encryption key for each Amazon Web Services Region.
|
3153
|
+
*/
|
3154
|
+
KmsKeyId?: NonEmptyString;
|
3155
|
+
/**
|
3156
|
+
* The port used to access the endpoint.
|
3157
|
+
*/
|
3158
|
+
Port?: Integer;
|
3159
|
+
/**
|
3160
|
+
* The name of the server where the endpoint database resides.
|
3161
|
+
*/
|
3162
|
+
ServerName?: NonEmptyString;
|
3163
|
+
/**
|
3164
|
+
* The SSL mode used to connect to the endpoint. The default is none.
|
3165
|
+
*/
|
3166
|
+
SslMode?: NonEmptyString;
|
3167
|
+
/**
|
3168
|
+
* The user name to be used to log in to the endpoint database.
|
3169
|
+
*/
|
3170
|
+
Username?: NonEmptyString;
|
3171
|
+
}
|
3172
|
+
export interface AwsDmsReplicationInstanceDetails {
|
3173
|
+
/**
|
3174
|
+
* The amount of storage (in gigabytes) that is allocated for the replication instance.
|
3175
|
+
*/
|
3176
|
+
AllocatedStorage?: Integer;
|
3177
|
+
/**
|
3178
|
+
* Indicates whether minor engine upgrades are applied automatically to the replication instance during the maintenance window.
|
3179
|
+
*/
|
3180
|
+
AutoMinorVersionUpgrade?: Boolean;
|
3181
|
+
/**
|
3182
|
+
* The Availability Zone that the replication instance is created in. The default value is a random, system-chosen Availability Zone in the endpoint's Amazon Web Services Region, such as us-east-1d.
|
3183
|
+
*/
|
3184
|
+
AvailabilityZone?: NonEmptyString;
|
3185
|
+
/**
|
3186
|
+
* The engine version number of the replication instance. If an engine version number is not specified when a replication instance is created, the default is the latest engine version available.
|
3187
|
+
*/
|
3188
|
+
EngineVersion?: NonEmptyString;
|
3189
|
+
/**
|
3190
|
+
* An KMS key identifier that is used to encrypt the data on the replication instance. If you don't specify a value for the KmsKeyId parameter, DMS uses your default encryption key. KMS creates the default encryption key for your Amazon Web Services account. Your Amazon Web Services account has a different default encryption key for each Amazon Web Services Region.
|
3191
|
+
*/
|
3192
|
+
KmsKeyId?: NonEmptyString;
|
3193
|
+
/**
|
3194
|
+
* Specifies whether the replication instance is deployed across multiple Availability Zones (AZs). You can't set the AvailabilityZone parameter if the MultiAZ parameter is set to true.
|
3195
|
+
*/
|
3196
|
+
MultiAZ?: Boolean;
|
3197
|
+
/**
|
3198
|
+
* The maintenance window times for the replication instance. Upgrades to the replication instance are performed during this time.
|
3199
|
+
*/
|
3200
|
+
PreferredMaintenanceWindow?: NonEmptyString;
|
3201
|
+
/**
|
3202
|
+
* Specifies the accessibility options for the replication instance. A value of true represents an instance with a public IP address. A value of false represents an instance with a private IP address. The default value is true.
|
3203
|
+
*/
|
3204
|
+
PubliclyAccessible?: Boolean;
|
3205
|
+
/**
|
3206
|
+
* The compute and memory capacity of the replication instance as defined for the specified replication instance class.
|
3207
|
+
*/
|
3208
|
+
ReplicationInstanceClass?: NonEmptyString;
|
3209
|
+
/**
|
3210
|
+
* The replication instance identifier.
|
3211
|
+
*/
|
3212
|
+
ReplicationInstanceIdentifier?: NonEmptyString;
|
3213
|
+
/**
|
3214
|
+
* The subnet group for the replication instance.
|
3215
|
+
*/
|
3216
|
+
ReplicationSubnetGroup?: AwsDmsReplicationInstanceReplicationSubnetGroupDetails;
|
3217
|
+
/**
|
3218
|
+
* The virtual private cloud (VPC) security group for the replication instance.
|
3219
|
+
*/
|
3220
|
+
VpcSecurityGroups?: AwsDmsReplicationInstanceVpcSecurityGroupsList;
|
3221
|
+
}
|
3222
|
+
export interface AwsDmsReplicationInstanceReplicationSubnetGroupDetails {
|
3223
|
+
/**
|
3224
|
+
* The identifier of the replication subnet group.
|
3225
|
+
*/
|
3226
|
+
ReplicationSubnetGroupIdentifier?: NonEmptyString;
|
3227
|
+
}
|
3228
|
+
export interface AwsDmsReplicationInstanceVpcSecurityGroupsDetails {
|
3229
|
+
/**
|
3230
|
+
* The identifier of the VPC security group that’s associated with the replication instance.
|
3231
|
+
*/
|
3232
|
+
VpcSecurityGroupId?: NonEmptyString;
|
3233
|
+
}
|
3234
|
+
export type AwsDmsReplicationInstanceVpcSecurityGroupsList = AwsDmsReplicationInstanceVpcSecurityGroupsDetails[];
|
3235
|
+
export interface AwsDmsReplicationTaskDetails {
|
3236
|
+
/**
|
3237
|
+
* Indicates when you want a change data capture (CDC) operation to start. CCdcStartPosition or CCdcStartTime specifies when you want a CDC operation to start. Only a value for one of these fields is included.
|
3238
|
+
*/
|
3239
|
+
CdcStartPosition?: NonEmptyString;
|
3240
|
+
/**
|
3241
|
+
* Indicates the start time for a CDC operation. CdcStartPosition or CCdcStartTime specifies when you want a CDC operation to start. Only a value for one of these fields is included.
|
3242
|
+
*/
|
3243
|
+
CdcStartTime?: NonEmptyString;
|
3244
|
+
/**
|
3245
|
+
* Indicates when you want a CDC operation to stop. The value can be either server time or commit time.
|
3246
|
+
*/
|
3247
|
+
CdcStopPosition?: NonEmptyString;
|
3248
|
+
/**
|
3249
|
+
* The migration type.
|
3250
|
+
*/
|
3251
|
+
MigrationType?: NonEmptyString;
|
3252
|
+
/**
|
3253
|
+
* The identifier of the replication task.
|
3254
|
+
*/
|
3255
|
+
Id?: NonEmptyString;
|
3256
|
+
/**
|
3257
|
+
* A display name for the resource identifier at the end of the EndpointArn response parameter. If you don't specify a ResourceIdentifier value, DMS generates a default identifier value for the end of EndpointArn.
|
3258
|
+
*/
|
3259
|
+
ResourceIdentifier?: NonEmptyString;
|
3260
|
+
/**
|
3261
|
+
* The Amazon Resource Name (ARN) of a replication instance.
|
3262
|
+
*/
|
3263
|
+
ReplicationInstanceArn?: NonEmptyString;
|
3264
|
+
/**
|
3265
|
+
* The user-defined replication task identifier or name.
|
3266
|
+
*/
|
3267
|
+
ReplicationTaskIdentifier?: NonEmptyString;
|
3268
|
+
/**
|
3269
|
+
* The settings for the replication task.
|
3270
|
+
*/
|
3271
|
+
ReplicationTaskSettings?: NonEmptyString;
|
3272
|
+
/**
|
3273
|
+
* The ARN of the source endpoint.
|
3274
|
+
*/
|
3275
|
+
SourceEndpointArn?: NonEmptyString;
|
3276
|
+
/**
|
3277
|
+
* The table mappings for the replication task, in JSON format.
|
3278
|
+
*/
|
3279
|
+
TableMappings?: NonEmptyString;
|
3280
|
+
/**
|
3281
|
+
* The ARN of the target endpoint.
|
3282
|
+
*/
|
3283
|
+
TargetEndpointArn?: NonEmptyString;
|
3284
|
+
/**
|
3285
|
+
* Supplemental information that the task requires to migrate the data for certain source and target endpoints.
|
3286
|
+
*/
|
3287
|
+
TaskData?: NonEmptyString;
|
3288
|
+
}
|
3118
3289
|
export interface AwsDynamoDbTableAttributeDefinition {
|
3119
3290
|
/**
|
3120
3291
|
* The name of the attribute.
|
@@ -5864,6 +6035,10 @@ declare namespace SecurityHub {
|
|
5864
6035
|
* The data volume definitions for the task.
|
5865
6036
|
*/
|
5866
6037
|
Volumes?: AwsEcsTaskDefinitionVolumesList;
|
6038
|
+
/**
|
6039
|
+
* The status of the task definition.
|
6040
|
+
*/
|
6041
|
+
Status?: NonEmptyString;
|
5867
6042
|
}
|
5868
6043
|
export interface AwsEcsTaskDefinitionInferenceAcceleratorsDetails {
|
5869
6044
|
/**
|
@@ -6807,6 +6982,107 @@ declare namespace SecurityHub {
|
|
6807
6982
|
*/
|
6808
6983
|
RegistryName?: NonEmptyString;
|
6809
6984
|
}
|
6985
|
+
export interface AwsEventsEndpointDetails {
|
6986
|
+
/**
|
6987
|
+
* The Amazon Resource Name (ARN) of the endpoint.
|
6988
|
+
*/
|
6989
|
+
Arn?: NonEmptyString;
|
6990
|
+
/**
|
6991
|
+
* A description of the endpoint.
|
6992
|
+
*/
|
6993
|
+
Description?: NonEmptyString;
|
6994
|
+
/**
|
6995
|
+
* The URL subdomain of the endpoint. For example, if EndpointUrl is https://abcde.veo.endpoints.event.amazonaws.com, then the EndpointId is abcde.veo.
|
6996
|
+
*/
|
6997
|
+
EndpointId?: NonEmptyString;
|
6998
|
+
/**
|
6999
|
+
* The URL of the endpoint.
|
7000
|
+
*/
|
7001
|
+
EndpointUrl?: NonEmptyString;
|
7002
|
+
/**
|
7003
|
+
* The event buses being used by the endpoint.
|
7004
|
+
*/
|
7005
|
+
EventBuses?: AwsEventsEndpointEventBusesList;
|
7006
|
+
/**
|
7007
|
+
* The name of the endpoint.
|
7008
|
+
*/
|
7009
|
+
Name?: NonEmptyString;
|
7010
|
+
/**
|
7011
|
+
* Whether event replication was enabled or disabled for this endpoint. The default state is ENABLED, which means you must supply a RoleArn. If you don't have a RoleArn or you don't want event replication enabled, set the state to DISABLED.
|
7012
|
+
*/
|
7013
|
+
ReplicationConfig?: AwsEventsEndpointReplicationConfigDetails;
|
7014
|
+
/**
|
7015
|
+
* The ARN of the role used by event replication for the endpoint.
|
7016
|
+
*/
|
7017
|
+
RoleArn?: NonEmptyString;
|
7018
|
+
/**
|
7019
|
+
* The routing configuration of the endpoint.
|
7020
|
+
*/
|
7021
|
+
RoutingConfig?: AwsEventsEndpointRoutingConfigDetails;
|
7022
|
+
/**
|
7023
|
+
* The current state of the endpoint.
|
7024
|
+
*/
|
7025
|
+
State?: NonEmptyString;
|
7026
|
+
/**
|
7027
|
+
* The reason the endpoint is in its current state.
|
7028
|
+
*/
|
7029
|
+
StateReason?: NonEmptyString;
|
7030
|
+
}
|
7031
|
+
export interface AwsEventsEndpointEventBusesDetails {
|
7032
|
+
/**
|
7033
|
+
* The Amazon Resource Name (ARN) of the event bus that the endpoint is associated with.
|
7034
|
+
*/
|
7035
|
+
EventBusArn?: NonEmptyString;
|
7036
|
+
}
|
7037
|
+
export type AwsEventsEndpointEventBusesList = AwsEventsEndpointEventBusesDetails[];
|
7038
|
+
export interface AwsEventsEndpointReplicationConfigDetails {
|
7039
|
+
/**
|
7040
|
+
* The state of event replication.
|
7041
|
+
*/
|
7042
|
+
State?: NonEmptyString;
|
7043
|
+
}
|
7044
|
+
export interface AwsEventsEndpointRoutingConfigDetails {
|
7045
|
+
/**
|
7046
|
+
* The failover configuration for an endpoint. This includes what triggers failover and what happens when it's triggered.
|
7047
|
+
*/
|
7048
|
+
FailoverConfig?: AwsEventsEndpointRoutingConfigFailoverConfigDetails;
|
7049
|
+
}
|
7050
|
+
export interface AwsEventsEndpointRoutingConfigFailoverConfigDetails {
|
7051
|
+
/**
|
7052
|
+
* The main Region of the endpoint.
|
7053
|
+
*/
|
7054
|
+
Primary?: AwsEventsEndpointRoutingConfigFailoverConfigPrimaryDetails;
|
7055
|
+
/**
|
7056
|
+
* The Region that events are routed to when failover is triggered or event replication is enabled.
|
7057
|
+
*/
|
7058
|
+
Secondary?: AwsEventsEndpointRoutingConfigFailoverConfigSecondaryDetails;
|
7059
|
+
}
|
7060
|
+
export interface AwsEventsEndpointRoutingConfigFailoverConfigPrimaryDetails {
|
7061
|
+
/**
|
7062
|
+
* The Amazon Resource Name (ARN) of the health check used by the endpoint to determine whether failover is triggered.
|
7063
|
+
*/
|
7064
|
+
HealthCheck?: NonEmptyString;
|
7065
|
+
}
|
7066
|
+
export interface AwsEventsEndpointRoutingConfigFailoverConfigSecondaryDetails {
|
7067
|
+
/**
|
7068
|
+
* Defines the secondary Region.
|
7069
|
+
*/
|
7070
|
+
Route?: NonEmptyString;
|
7071
|
+
}
|
7072
|
+
export interface AwsEventsEventbusDetails {
|
7073
|
+
/**
|
7074
|
+
* The Amazon Resource Name (ARN) of the account permitted to write events to the current account.
|
7075
|
+
*/
|
7076
|
+
Arn?: NonEmptyString;
|
7077
|
+
/**
|
7078
|
+
* The name of the event bus.
|
7079
|
+
*/
|
7080
|
+
Name?: NonEmptyString;
|
7081
|
+
/**
|
7082
|
+
* The policy that enables the external account to send events to your account.
|
7083
|
+
*/
|
7084
|
+
Policy?: NonEmptyString;
|
7085
|
+
}
|
6810
7086
|
export interface AwsGuardDutyDetectorDataSourcesCloudTrailDetails {
|
6811
7087
|
/**
|
6812
7088
|
* Specifies whether CloudTrail is activated as a data source for the detector.
|
@@ -7515,6 +7791,112 @@ declare namespace SecurityHub {
|
|
7515
7791
|
ContainerPath?: NonEmptyString;
|
7516
7792
|
}
|
7517
7793
|
export type AwsMountPointList = AwsMountPoint[];
|
7794
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationDetails {
|
7795
|
+
/**
|
7796
|
+
* Provides details for client authentication using SASL.
|
7797
|
+
*/
|
7798
|
+
Sasl?: AwsMskClusterClusterInfoClientAuthenticationSaslDetails;
|
7799
|
+
/**
|
7800
|
+
* Provides details for allowing no client authentication.
|
7801
|
+
*/
|
7802
|
+
Unauthenticated?: AwsMskClusterClusterInfoClientAuthenticationUnauthenticatedDetails;
|
7803
|
+
/**
|
7804
|
+
* Provides details for client authentication using TLS.
|
7805
|
+
*/
|
7806
|
+
Tls?: AwsMskClusterClusterInfoClientAuthenticationTlsDetails;
|
7807
|
+
}
|
7808
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationSaslDetails {
|
7809
|
+
/**
|
7810
|
+
* Provides details for SASL client authentication using IAM.
|
7811
|
+
*/
|
7812
|
+
Iam?: AwsMskClusterClusterInfoClientAuthenticationSaslIamDetails;
|
7813
|
+
/**
|
7814
|
+
* Details for SASL client authentication using SCRAM.
|
7815
|
+
*/
|
7816
|
+
Scram?: AwsMskClusterClusterInfoClientAuthenticationSaslScramDetails;
|
7817
|
+
}
|
7818
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationSaslIamDetails {
|
7819
|
+
/**
|
7820
|
+
* Indicates whether SASL/IAM authentication is enabled or not.
|
7821
|
+
*/
|
7822
|
+
Enabled?: Boolean;
|
7823
|
+
}
|
7824
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationSaslScramDetails {
|
7825
|
+
/**
|
7826
|
+
* Indicates whether SASL/SCRAM authentication is enabled or not.
|
7827
|
+
*/
|
7828
|
+
Enabled?: Boolean;
|
7829
|
+
}
|
7830
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationTlsDetails {
|
7831
|
+
/**
|
7832
|
+
* List of Amazon Web Services Private CA Amazon Resource Names (ARNs). Amazon Web Services Private CA enables creation of private certificate authority (CA) hierarchies, including root and subordinate CAs, without the investment and maintenance costs of operating an on-premises CA.
|
7833
|
+
*/
|
7834
|
+
CertificateAuthorityArnList?: StringList;
|
7835
|
+
/**
|
7836
|
+
* Indicates whether TLS authentication is enabled or not.
|
7837
|
+
*/
|
7838
|
+
Enabled?: Boolean;
|
7839
|
+
}
|
7840
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationUnauthenticatedDetails {
|
7841
|
+
/**
|
7842
|
+
* Indicates whether unauthenticated is allowed or not.
|
7843
|
+
*/
|
7844
|
+
Enabled?: Boolean;
|
7845
|
+
}
|
7846
|
+
export interface AwsMskClusterClusterInfoDetails {
|
7847
|
+
/**
|
7848
|
+
* Includes encryption-related information, such as the KMS key used for encrypting data at rest and whether you want Amazon MSK to encrypt your data in transit.
|
7849
|
+
*/
|
7850
|
+
EncryptionInfo?: AwsMskClusterClusterInfoEncryptionInfoDetails;
|
7851
|
+
/**
|
7852
|
+
* The current version of the MSK cluster.
|
7853
|
+
*/
|
7854
|
+
CurrentVersion?: NonEmptyString;
|
7855
|
+
/**
|
7856
|
+
* The number of broker nodes in the cluster.
|
7857
|
+
*/
|
7858
|
+
NumberOfBrokerNodes?: Integer;
|
7859
|
+
/**
|
7860
|
+
* The name of the cluster.
|
7861
|
+
*/
|
7862
|
+
ClusterName?: NonEmptyString;
|
7863
|
+
/**
|
7864
|
+
* Provides information for different modes of client authentication.
|
7865
|
+
*/
|
7866
|
+
ClientAuthentication?: AwsMskClusterClusterInfoClientAuthenticationDetails;
|
7867
|
+
}
|
7868
|
+
export interface AwsMskClusterClusterInfoEncryptionInfoDetails {
|
7869
|
+
/**
|
7870
|
+
* The settings for encrypting data in transit.
|
7871
|
+
*/
|
7872
|
+
EncryptionInTransit?: AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails;
|
7873
|
+
/**
|
7874
|
+
* The data-volume encryption details. You can't update encryption at rest settings for existing clusters.
|
7875
|
+
*/
|
7876
|
+
EncryptionAtRest?: AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails;
|
7877
|
+
}
|
7878
|
+
export interface AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails {
|
7879
|
+
/**
|
7880
|
+
* The Amazon Resource Name (ARN) of the KMS key for encrypting data at rest. If you don't specify a KMS key, MSK creates one for you and uses it.
|
7881
|
+
*/
|
7882
|
+
DataVolumeKMSKeyId?: NonEmptyString;
|
7883
|
+
}
|
7884
|
+
export interface AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails {
|
7885
|
+
/**
|
7886
|
+
* When set to true, it indicates that data communication among the broker nodes of the cluster is encrypted. When set to false, the communication happens in plain text. The default value is true.
|
7887
|
+
*/
|
7888
|
+
InCluster?: Boolean;
|
7889
|
+
/**
|
7890
|
+
* Indicates the encryption setting for data in transit between clients and brokers.
|
7891
|
+
*/
|
7892
|
+
ClientBroker?: NonEmptyString;
|
7893
|
+
}
|
7894
|
+
export interface AwsMskClusterDetails {
|
7895
|
+
/**
|
7896
|
+
* Provides information about a cluster.
|
7897
|
+
*/
|
7898
|
+
ClusterInfo?: AwsMskClusterClusterInfoDetails;
|
7899
|
+
}
|
7518
7900
|
export interface AwsNetworkFirewallFirewallDetails {
|
7519
7901
|
/**
|
7520
7902
|
* Whether the firewall is protected from deletion. If set to true, then the firewall cannot be deleted.
|
@@ -8020,6 +8402,10 @@ declare namespace SecurityHub {
|
|
8020
8402
|
* Whether the mapping of IAM accounts to database accounts is enabled.
|
8021
8403
|
*/
|
8022
8404
|
IamDatabaseAuthenticationEnabled?: Boolean;
|
8405
|
+
/**
|
8406
|
+
* Indicates if minor version upgrades are automatically applied to the cluster.
|
8407
|
+
*/
|
8408
|
+
AutoMinorVersionUpgrade?: Boolean;
|
8023
8409
|
}
|
8024
8410
|
export interface AwsRdsDbClusterMember {
|
8025
8411
|
/**
|
@@ -9240,6 +9626,62 @@ declare namespace SecurityHub {
|
|
9240
9626
|
VpcSecurityGroupId?: NonEmptyString;
|
9241
9627
|
}
|
9242
9628
|
export type AwsRedshiftClusterVpcSecurityGroups = AwsRedshiftClusterVpcSecurityGroup[];
|
9629
|
+
export interface AwsRoute53HostedZoneConfigDetails {
|
9630
|
+
/**
|
9631
|
+
* Any comments that you include about the hosted zone.
|
9632
|
+
*/
|
9633
|
+
Comment?: NonEmptyString;
|
9634
|
+
}
|
9635
|
+
export interface AwsRoute53HostedZoneDetails {
|
9636
|
+
/**
|
9637
|
+
* An object that contains information about the specified hosted zone.
|
9638
|
+
*/
|
9639
|
+
HostedZone?: AwsRoute53HostedZoneObjectDetails;
|
9640
|
+
/**
|
9641
|
+
* An object that contains information about the Amazon Virtual Private Clouds (Amazon VPCs) that are associated with the specified hosted zone.
|
9642
|
+
*/
|
9643
|
+
Vpcs?: AwsRoute53HostedZoneVpcsList;
|
9644
|
+
/**
|
9645
|
+
* An object that contains a list of the authoritative name servers for a hosted zone or for a reusable delegation set.
|
9646
|
+
*/
|
9647
|
+
NameServers?: AwsRoute53HostedZoneNameServersList;
|
9648
|
+
/**
|
9649
|
+
* An array that contains one QueryLoggingConfig element for each DNS query logging configuration that is associated with the current Amazon Web Services account.
|
9650
|
+
*/
|
9651
|
+
QueryLoggingConfig?: AwsRoute53QueryLoggingConfigDetails;
|
9652
|
+
}
|
9653
|
+
export type AwsRoute53HostedZoneNameServersList = NonEmptyString[];
|
9654
|
+
export interface AwsRoute53HostedZoneObjectDetails {
|
9655
|
+
/**
|
9656
|
+
* The ID that Route 53 assigns to the hosted zone when you create it.
|
9657
|
+
*/
|
9658
|
+
Id?: NonEmptyString;
|
9659
|
+
/**
|
9660
|
+
* The name of the domain. For public hosted zones, this is the name that you have registered with your DNS registrar.
|
9661
|
+
*/
|
9662
|
+
Name?: NonEmptyString;
|
9663
|
+
/**
|
9664
|
+
* An object that includes the Comment element.
|
9665
|
+
*/
|
9666
|
+
Config?: AwsRoute53HostedZoneConfigDetails;
|
9667
|
+
}
|
9668
|
+
export interface AwsRoute53HostedZoneVpcDetails {
|
9669
|
+
/**
|
9670
|
+
* The identifier of an Amazon VPC.
|
9671
|
+
*/
|
9672
|
+
Id?: NonEmptyString;
|
9673
|
+
/**
|
9674
|
+
* The Amazon Web Services Region that an Amazon VPC was created in.
|
9675
|
+
*/
|
9676
|
+
Region?: NonEmptyString;
|
9677
|
+
}
|
9678
|
+
export type AwsRoute53HostedZoneVpcsList = AwsRoute53HostedZoneVpcDetails[];
|
9679
|
+
export interface AwsRoute53QueryLoggingConfigDetails {
|
9680
|
+
/**
|
9681
|
+
* The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group that Route 53 is publishing logs to.
|
9682
|
+
*/
|
9683
|
+
CloudWatchLogsLogGroupArn?: CloudWatchLogsLogGroupArnConfigDetails;
|
9684
|
+
}
|
9243
9685
|
export interface AwsS3AccountPublicAccessBlockDetails {
|
9244
9686
|
/**
|
9245
9687
|
* Indicates whether to reject calls to update an S3 bucket if the calls include a public access control list (ACL).
|
@@ -11448,6 +11890,20 @@ declare namespace SecurityHub {
|
|
11448
11890
|
*/
|
11449
11891
|
Reason?: NonEmptyString;
|
11450
11892
|
}
|
11893
|
+
export interface CloudWatchLogsLogGroupArnConfigDetails {
|
11894
|
+
/**
|
11895
|
+
* The ARN of the CloudWatch Logs log group that Route 53 is publishing logs to.
|
11896
|
+
*/
|
11897
|
+
CloudWatchLogsLogGroupArn?: NonEmptyString;
|
11898
|
+
/**
|
11899
|
+
* The ID of the hosted zone that CloudWatch Logs is logging queries for.
|
11900
|
+
*/
|
11901
|
+
HostedZoneId?: NonEmptyString;
|
11902
|
+
/**
|
11903
|
+
* The ID for a DNS query logging configuration.
|
11904
|
+
*/
|
11905
|
+
Id?: NonEmptyString;
|
11906
|
+
}
|
11451
11907
|
export interface CodeVulnerabilitiesFilePath {
|
11452
11908
|
/**
|
11453
11909
|
* The line number of the last line of code in which the vulnerability is located.
|
@@ -13610,6 +14066,34 @@ declare namespace SecurityHub {
|
|
13610
14066
|
* Provides information about an Amazon Athena workgroup. A workgroup helps you separate users, teams, applications, or workloads. It also helps you set limits on data processing and track costs.
|
13611
14067
|
*/
|
13612
14068
|
AwsAthenaWorkGroup?: AwsAthenaWorkGroupDetails;
|
14069
|
+
/**
|
14070
|
+
* Provides details about Amazon EventBridge event bus for an endpoint. An event bus is a router that receives events and delivers them to zero or more destinations, or targets.
|
14071
|
+
*/
|
14072
|
+
AwsEventsEventbus?: AwsEventsEventbusDetails;
|
14073
|
+
/**
|
14074
|
+
* Provides details about an Database Migration Service (DMS) endpoint. An endpoint provides connection, data store type, and location information about your data store.
|
14075
|
+
*/
|
14076
|
+
AwsDmsEndpoint?: AwsDmsEndpointDetails;
|
14077
|
+
/**
|
14078
|
+
* Provides details about an Amazon EventBridge global endpoint. The endpoint can improve your application’s availability by making it Regional-fault tolerant.
|
14079
|
+
*/
|
14080
|
+
AwsEventsEndpoint?: AwsEventsEndpointDetails;
|
14081
|
+
/**
|
14082
|
+
* Provides details about an DMS replication task. A replication task moves a set of data from the source endpoint to the target endpoint.
|
14083
|
+
*/
|
14084
|
+
AwsDmsReplicationTask?: AwsDmsReplicationTaskDetails;
|
14085
|
+
/**
|
14086
|
+
* Provides details about an DMS replication instance. DMS uses a replication instance to connect to your source data store, read the source data, and format the data for consumption by the target data store.
|
14087
|
+
*/
|
14088
|
+
AwsDmsReplicationInstance?: AwsDmsReplicationInstanceDetails;
|
14089
|
+
/**
|
14090
|
+
* Provides details about an Amazon Route 53 hosted zone, including the four name servers assigned to the hosted zone. A hosted zone represents a collection of records that can be managed together, belonging to a single parent domain name.
|
14091
|
+
*/
|
14092
|
+
AwsRoute53HostedZone?: AwsRoute53HostedZoneDetails;
|
14093
|
+
/**
|
14094
|
+
* Provides details about an Amazon Managed Streaming for Apache Kafka (Amazon MSK) cluster.
|
14095
|
+
*/
|
14096
|
+
AwsMskCluster?: AwsMskClusterDetails;
|
13613
14097
|
}
|
13614
14098
|
export type ResourceList = Resource[];
|
13615
14099
|
export interface Result {
|
@@ -300,11 +300,11 @@ declare class StorageGateway extends Service {
|
|
300
300
|
*/
|
301
301
|
describeFileSystemAssociations(callback?: (err: AWSError, data: StorageGateway.Types.DescribeFileSystemAssociationsOutput) => void): Request<StorageGateway.Types.DescribeFileSystemAssociationsOutput, AWSError>;
|
302
302
|
/**
|
303
|
-
* Returns metadata about a gateway such as its name, network interfaces,
|
303
|
+
* Returns metadata about a gateway such as its name, network interfaces, time zone, status, and software version. To specify which gateway to describe, use the Amazon Resource Name (ARN) of the gateway in your request.
|
304
304
|
*/
|
305
305
|
describeGatewayInformation(params: StorageGateway.Types.DescribeGatewayInformationInput, callback?: (err: AWSError, data: StorageGateway.Types.DescribeGatewayInformationOutput) => void): Request<StorageGateway.Types.DescribeGatewayInformationOutput, AWSError>;
|
306
306
|
/**
|
307
|
-
* Returns metadata about a gateway such as its name, network interfaces,
|
307
|
+
* Returns metadata about a gateway such as its name, network interfaces, time zone, status, and software version. To specify which gateway to describe, use the Amazon Resource Name (ARN) of the gateway in your request.
|
308
308
|
*/
|
309
309
|
describeGatewayInformation(callback?: (err: AWSError, data: StorageGateway.Types.DescribeGatewayInformationOutput) => void): Request<StorageGateway.Types.DescribeGatewayInformationOutput, AWSError>;
|
310
310
|
/**
|
@@ -428,11 +428,11 @@ declare class StorageGateway extends Service {
|
|
428
428
|
*/
|
429
429
|
disassociateFileSystem(callback?: (err: AWSError, data: StorageGateway.Types.DisassociateFileSystemOutput) => void): Request<StorageGateway.Types.DisassociateFileSystemOutput, AWSError>;
|
430
430
|
/**
|
431
|
-
* Adds a file gateway to an Active Directory domain. This operation is only supported for file gateways that support the SMB file protocol.
|
431
|
+
* Adds a file gateway to an Active Directory domain. This operation is only supported for file gateways that support the SMB file protocol. Joining a domain creates an Active Directory computer account in the default organizational unit, using the gateway's Gateway ID as the account name (for example, SGW-1234ADE). If your Active Directory environment requires that you pre-stage accounts to facilitate the join domain process, you will need to create this account ahead of time. To create the gateway's computer account in an organizational unit other than the default, you must specify the organizational unit when joining the domain.
|
432
432
|
*/
|
433
433
|
joinDomain(params: StorageGateway.Types.JoinDomainInput, callback?: (err: AWSError, data: StorageGateway.Types.JoinDomainOutput) => void): Request<StorageGateway.Types.JoinDomainOutput, AWSError>;
|
434
434
|
/**
|
435
|
-
* Adds a file gateway to an Active Directory domain. This operation is only supported for file gateways that support the SMB file protocol.
|
435
|
+
* Adds a file gateway to an Active Directory domain. This operation is only supported for file gateways that support the SMB file protocol. Joining a domain creates an Active Directory computer account in the default organizational unit, using the gateway's Gateway ID as the account name (for example, SGW-1234ADE). If your Active Directory environment requires that you pre-stage accounts to facilitate the join domain process, you will need to create this account ahead of time. To create the gateway's computer account in an organizational unit other than the default, you must specify the organizational unit when joining the domain.
|
436
436
|
*/
|
437
437
|
joinDomain(callback?: (err: AWSError, data: StorageGateway.Types.JoinDomainOutput) => void): Request<StorageGateway.Types.JoinDomainOutput, AWSError>;
|
438
438
|
/**
|
@@ -444,11 +444,11 @@ declare class StorageGateway extends Service {
|
|
444
444
|
*/
|
445
445
|
listAutomaticTapeCreationPolicies(callback?: (err: AWSError, data: StorageGateway.Types.ListAutomaticTapeCreationPoliciesOutput) => void): Request<StorageGateway.Types.ListAutomaticTapeCreationPoliciesOutput, AWSError>;
|
446
446
|
/**
|
447
|
-
* Gets a list of the file shares for a specific S3 File Gateway, or the list of file shares that belong to the calling
|
447
|
+
* Gets a list of the file shares for a specific S3 File Gateway, or the list of file shares that belong to the calling Amazon Web Services account. This operation is only supported for S3 File Gateways.
|
448
448
|
*/
|
449
449
|
listFileShares(params: StorageGateway.Types.ListFileSharesInput, callback?: (err: AWSError, data: StorageGateway.Types.ListFileSharesOutput) => void): Request<StorageGateway.Types.ListFileSharesOutput, AWSError>;
|
450
450
|
/**
|
451
|
-
* Gets a list of the file shares for a specific S3 File Gateway, or the list of file shares that belong to the calling
|
451
|
+
* Gets a list of the file shares for a specific S3 File Gateway, or the list of file shares that belong to the calling Amazon Web Services account. This operation is only supported for S3 File Gateways.
|
452
452
|
*/
|
453
453
|
listFileShares(callback?: (err: AWSError, data: StorageGateway.Types.ListFileSharesOutput) => void): Request<StorageGateway.Types.ListFileSharesOutput, AWSError>;
|
454
454
|
/**
|
@@ -524,19 +524,19 @@ declare class StorageGateway extends Service {
|
|
524
524
|
*/
|
525
525
|
listVolumes(callback?: (err: AWSError, data: StorageGateway.Types.ListVolumesOutput) => void): Request<StorageGateway.Types.ListVolumesOutput, AWSError>;
|
526
526
|
/**
|
527
|
-
* Sends you notification through CloudWatch Events when all files written to your file share have been uploaded to S3. Amazon S3. Storage Gateway can send a notification through Amazon CloudWatch Events when all files written to your file share up to that point in time have been uploaded to Amazon S3. These files include files written to the file share up to the time that you make a request for notification. When the upload is done, Storage Gateway sends you notification through an Amazon CloudWatch Event. You can configure CloudWatch Events to send the notification through event targets such as Amazon SNS or Lambda function. This operation is only supported for S3 File Gateways. For more information, see Getting file upload notification in the
|
527
|
+
* Sends you notification through CloudWatch Events when all files written to your file share have been uploaded to S3. Amazon S3. Storage Gateway can send a notification through Amazon CloudWatch Events when all files written to your file share up to that point in time have been uploaded to Amazon S3. These files include files written to the file share up to the time that you make a request for notification. When the upload is done, Storage Gateway sends you notification through an Amazon CloudWatch Event. You can configure CloudWatch Events to send the notification through event targets such as Amazon SNS or Lambda function. This operation is only supported for S3 File Gateways. For more information, see Getting file upload notification in the Amazon S3 File Gateway User Guide.
|
528
528
|
*/
|
529
529
|
notifyWhenUploaded(params: StorageGateway.Types.NotifyWhenUploadedInput, callback?: (err: AWSError, data: StorageGateway.Types.NotifyWhenUploadedOutput) => void): Request<StorageGateway.Types.NotifyWhenUploadedOutput, AWSError>;
|
530
530
|
/**
|
531
|
-
* Sends you notification through CloudWatch Events when all files written to your file share have been uploaded to S3. Amazon S3. Storage Gateway can send a notification through Amazon CloudWatch Events when all files written to your file share up to that point in time have been uploaded to Amazon S3. These files include files written to the file share up to the time that you make a request for notification. When the upload is done, Storage Gateway sends you notification through an Amazon CloudWatch Event. You can configure CloudWatch Events to send the notification through event targets such as Amazon SNS or Lambda function. This operation is only supported for S3 File Gateways. For more information, see Getting file upload notification in the
|
531
|
+
* Sends you notification through CloudWatch Events when all files written to your file share have been uploaded to S3. Amazon S3. Storage Gateway can send a notification through Amazon CloudWatch Events when all files written to your file share up to that point in time have been uploaded to Amazon S3. These files include files written to the file share up to the time that you make a request for notification. When the upload is done, Storage Gateway sends you notification through an Amazon CloudWatch Event. You can configure CloudWatch Events to send the notification through event targets such as Amazon SNS or Lambda function. This operation is only supported for S3 File Gateways. For more information, see Getting file upload notification in the Amazon S3 File Gateway User Guide.
|
532
532
|
*/
|
533
533
|
notifyWhenUploaded(callback?: (err: AWSError, data: StorageGateway.Types.NotifyWhenUploadedOutput) => void): Request<StorageGateway.Types.NotifyWhenUploadedOutput, AWSError>;
|
534
534
|
/**
|
535
|
-
* Refreshes the cached inventory of objects for the specified file share. This operation finds objects in the Amazon S3 bucket that were added, removed, or replaced since the gateway last listed the bucket's contents and cached the results. This operation does not import files into the S3 File Gateway cache storage. It only updates the cached inventory to reflect changes in the inventory of the objects in the S3 bucket. This operation is only supported in the S3 File Gateway types. You can subscribe to be notified through an Amazon CloudWatch event when your RefreshCache operation completes. For more information, see Getting notified about file operations in the Storage Gateway User Guide. This operation is Only supported for S3 File Gateways. When this API is called, it only initiates the refresh operation. When the API call completes and returns a success code, it doesn't necessarily mean that the file refresh has completed. You should use the refresh-complete notification to determine that the operation has completed before you check for new files on the gateway file share. You can subscribe to be notified through a CloudWatch event when your RefreshCache operation completes. Throttle limit: This API is asynchronous, so the gateway will accept no more than two refreshes at any time. We recommend using the refresh-complete CloudWatch event notification before issuing additional requests. For more information, see Getting notified about file operations in the Storage Gateway User Guide. Wait at least 60 seconds between consecutive RefreshCache API requests.
|
535
|
+
* Refreshes the cached inventory of objects for the specified file share. This operation finds objects in the Amazon S3 bucket that were added, removed, or replaced since the gateway last listed the bucket's contents and cached the results. This operation does not import files into the S3 File Gateway cache storage. It only updates the cached inventory to reflect changes in the inventory of the objects in the S3 bucket. This operation is only supported in the S3 File Gateway types. You can subscribe to be notified through an Amazon CloudWatch event when your RefreshCache operation completes. For more information, see Getting notified about file operations in the Storage Gateway User Guide. This operation is Only supported for S3 File Gateways. When this API is called, it only initiates the refresh operation. When the API call completes and returns a success code, it doesn't necessarily mean that the file refresh has completed. You should use the refresh-complete notification to determine that the operation has completed before you check for new files on the gateway file share. You can subscribe to be notified through a CloudWatch event when your RefreshCache operation completes. Throttle limit: This API is asynchronous, so the gateway will accept no more than two refreshes at any time. We recommend using the refresh-complete CloudWatch event notification before issuing additional requests. For more information, see Getting notified about file operations in the Storage Gateway User Guide. Wait at least 60 seconds between consecutive RefreshCache API requests. If you invoke the RefreshCache API when two requests are already being processed, any new request will cause an InvalidGatewayRequestException error because too many requests were sent to the server. The S3 bucket name does not need to be included when entering the list of folders in the FolderList parameter. For more information, see Getting notified about file operations in the Storage Gateway User Guide.
|
536
536
|
*/
|
537
537
|
refreshCache(params: StorageGateway.Types.RefreshCacheInput, callback?: (err: AWSError, data: StorageGateway.Types.RefreshCacheOutput) => void): Request<StorageGateway.Types.RefreshCacheOutput, AWSError>;
|
538
538
|
/**
|
539
|
-
* Refreshes the cached inventory of objects for the specified file share. This operation finds objects in the Amazon S3 bucket that were added, removed, or replaced since the gateway last listed the bucket's contents and cached the results. This operation does not import files into the S3 File Gateway cache storage. It only updates the cached inventory to reflect changes in the inventory of the objects in the S3 bucket. This operation is only supported in the S3 File Gateway types. You can subscribe to be notified through an Amazon CloudWatch event when your RefreshCache operation completes. For more information, see Getting notified about file operations in the Storage Gateway User Guide. This operation is Only supported for S3 File Gateways. When this API is called, it only initiates the refresh operation. When the API call completes and returns a success code, it doesn't necessarily mean that the file refresh has completed. You should use the refresh-complete notification to determine that the operation has completed before you check for new files on the gateway file share. You can subscribe to be notified through a CloudWatch event when your RefreshCache operation completes. Throttle limit: This API is asynchronous, so the gateway will accept no more than two refreshes at any time. We recommend using the refresh-complete CloudWatch event notification before issuing additional requests. For more information, see Getting notified about file operations in the Storage Gateway User Guide. Wait at least 60 seconds between consecutive RefreshCache API requests.
|
539
|
+
* Refreshes the cached inventory of objects for the specified file share. This operation finds objects in the Amazon S3 bucket that were added, removed, or replaced since the gateway last listed the bucket's contents and cached the results. This operation does not import files into the S3 File Gateway cache storage. It only updates the cached inventory to reflect changes in the inventory of the objects in the S3 bucket. This operation is only supported in the S3 File Gateway types. You can subscribe to be notified through an Amazon CloudWatch event when your RefreshCache operation completes. For more information, see Getting notified about file operations in the Storage Gateway User Guide. This operation is Only supported for S3 File Gateways. When this API is called, it only initiates the refresh operation. When the API call completes and returns a success code, it doesn't necessarily mean that the file refresh has completed. You should use the refresh-complete notification to determine that the operation has completed before you check for new files on the gateway file share. You can subscribe to be notified through a CloudWatch event when your RefreshCache operation completes. Throttle limit: This API is asynchronous, so the gateway will accept no more than two refreshes at any time. We recommend using the refresh-complete CloudWatch event notification before issuing additional requests. For more information, see Getting notified about file operations in the Storage Gateway User Guide. Wait at least 60 seconds between consecutive RefreshCache API requests. If you invoke the RefreshCache API when two requests are already being processed, any new request will cause an InvalidGatewayRequestException error because too many requests were sent to the server. The S3 bucket name does not need to be included when entering the list of folders in the FolderList parameter. For more information, see Getting notified about file operations in the Storage Gateway User Guide.
|
540
540
|
*/
|
541
541
|
refreshCache(callback?: (err: AWSError, data: StorageGateway.Types.RefreshCacheOutput) => void): Request<StorageGateway.Types.RefreshCacheOutput, AWSError>;
|
542
542
|
/**
|
@@ -628,11 +628,11 @@ declare class StorageGateway extends Service {
|
|
628
628
|
*/
|
629
629
|
updateBandwidthRateLimit(callback?: (err: AWSError, data: StorageGateway.Types.UpdateBandwidthRateLimitOutput) => void): Request<StorageGateway.Types.UpdateBandwidthRateLimitOutput, AWSError>;
|
630
630
|
/**
|
631
|
-
* Updates the bandwidth rate limit schedule for a specified gateway. By default, gateways do not have bandwidth rate limit schedules, which means no bandwidth rate limiting is in effect. Use this to initiate or update a gateway's bandwidth rate limit schedule. This operation is supported
|
631
|
+
* Updates the bandwidth rate limit schedule for a specified gateway. By default, gateways do not have bandwidth rate limit schedules, which means no bandwidth rate limiting is in effect. Use this to initiate or update a gateway's bandwidth rate limit schedule. This operation is supported for volume, tape, and S3 file gateways. S3 file gateways support bandwidth rate limits for upload only. FSx file gateways do not support bandwidth rate limits.
|
632
632
|
*/
|
633
633
|
updateBandwidthRateLimitSchedule(params: StorageGateway.Types.UpdateBandwidthRateLimitScheduleInput, callback?: (err: AWSError, data: StorageGateway.Types.UpdateBandwidthRateLimitScheduleOutput) => void): Request<StorageGateway.Types.UpdateBandwidthRateLimitScheduleOutput, AWSError>;
|
634
634
|
/**
|
635
|
-
* Updates the bandwidth rate limit schedule for a specified gateway. By default, gateways do not have bandwidth rate limit schedules, which means no bandwidth rate limiting is in effect. Use this to initiate or update a gateway's bandwidth rate limit schedule. This operation is supported
|
635
|
+
* Updates the bandwidth rate limit schedule for a specified gateway. By default, gateways do not have bandwidth rate limit schedules, which means no bandwidth rate limiting is in effect. Use this to initiate or update a gateway's bandwidth rate limit schedule. This operation is supported for volume, tape, and S3 file gateways. S3 file gateways support bandwidth rate limits for upload only. FSx file gateways do not support bandwidth rate limits.
|
636
636
|
*/
|
637
637
|
updateBandwidthRateLimitSchedule(callback?: (err: AWSError, data: StorageGateway.Types.UpdateBandwidthRateLimitScheduleOutput) => void): Request<StorageGateway.Types.UpdateBandwidthRateLimitScheduleOutput, AWSError>;
|
638
638
|
/**
|
@@ -965,7 +965,7 @@ declare namespace StorageGateway {
|
|
965
965
|
*/
|
966
966
|
DaysOfWeek: DaysOfWeek;
|
967
967
|
/**
|
968
|
-
* The average upload rate limit component of the bandwidth rate limit interval, in bits per second. This field does not appear in the response if the upload rate limit is not set.
|
968
|
+
* The average upload rate limit component of the bandwidth rate limit interval, in bits per second. This field does not appear in the response if the upload rate limit is not set. For Tape Gateway and Volume Gateway, the minimum value is 51200. For S3 File Gateway and FSx File Gateway, the minimum value is 104857600.
|
969
969
|
*/
|
970
970
|
AverageUploadRateLimitInBitsPerSec?: BandwidthUploadRateLimit;
|
971
971
|
/**
|
@@ -1880,6 +1880,10 @@ declare namespace StorageGateway {
|
|
1880
1880
|
* A unique identifier for the specific instance of the host platform running the gateway. This value is only available for certain host environments, and its format depends on the host environment type.
|
1881
1881
|
*/
|
1882
1882
|
HostEnvironmentId?: HostEnvironmentId;
|
1883
|
+
/**
|
1884
|
+
* The version number of the software running on the gateway appliance.
|
1885
|
+
*/
|
1886
|
+
SoftwareVersion?: SoftwareVersion;
|
1883
1887
|
}
|
1884
1888
|
export interface DescribeMaintenanceStartTimeInput {
|
1885
1889
|
GatewayARN: GatewayARN;
|
@@ -2990,6 +2994,7 @@ declare namespace StorageGateway {
|
|
2990
2994
|
export type SnapshotDescription = string;
|
2991
2995
|
export type SnapshotId = string;
|
2992
2996
|
export type SoftwareUpdatesEndDate = string;
|
2997
|
+
export type SoftwareVersion = string;
|
2993
2998
|
export type Squash = string;
|
2994
2999
|
export interface StartAvailabilityMonitorTestInput {
|
2995
3000
|
GatewayARN: GatewayARN;
|