You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Performs the `ListComponentBuildVersions` operation on the `imagebuilder` service.
3038
3038
///
3039
-
/// Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: ../. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
3039
+
/// Returns the list of component build versions for the specified component version Amazon Resource Name (ARN).
Copy file name to clipboardExpand all lines: Sources/Services/AWSM2/Sources/AWSM2/Models.swift
+46-10Lines changed: 46 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -321,16 +321,20 @@ public struct CancelBatchJobExecutionInput: Swift.Sendable {
321
321
/// The unique identifier of the application.
322
322
/// This member is required.
323
323
publicvarapplicationId:Swift.String?
324
+
/// The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for Cancel Batch Job Execution operation.
325
+
publicvarauthSecretsManagerArn:Swift.String?
324
326
/// The unique identifier of the batch job execution.
/// Unique, case-sensitive identifier the service generates to ensure the idempotency of the request to create an application. The service generates the clientToken when the API call is triggered. The token expires after one hour, so if you retry the API within this timeframe with the same clientToken, you will get the same response. The service also handles deleting the clientToken after it expires.
430
+
/// A client token is a unique, case-sensitive string of up to 128 ASCII characters with ASCII values of 33-126 inclusive. It's generated by the client to ensure idempotent operations, allowing for safe retries without unintended side effects.
427
431
publicvarclientToken:Swift.String?
428
432
/// The application definition for this application. You can specify either inline JSON or an S3 bucket location.
429
433
/// This member is required.
@@ -1257,16 +1261,16 @@ extension M2ClientTypes {
1257
1261
1258
1262
extensionM2ClientTypes{
1259
1263
1260
-
/// Provides restart step information for the most recent restart operation.
1264
+
/// Provides step/procedure step information for a restart batch job operation.
1261
1265
publicstructJobStepRestartMarker:Swift.Sendable{
1262
-
/// The procedure step name that a job was restarted from.
1266
+
/// The procedure step name that a batch job was restarted from.
1263
1267
publicvarfromProcStep:Swift.String?
1264
-
/// The step name that a batch job restart was from.
1268
+
/// The step name that a batch job was restarted from.
1265
1269
/// This member is required.
1266
1270
publicvarfromStep:Swift.String?
1267
1271
/// The procedure step name that a batch job was restarted to.
1268
1272
publicvartoProcStep:Swift.String?
1269
-
/// The step name that a job was restarted to.
1273
+
/// The step name that a batch job was restarted to.
1270
1274
publicvartoStep:Swift.String?
1271
1275
1272
1276
publicinit(
@@ -1291,7 +1295,7 @@ extension M2ClientTypes {
1291
1295
/// The executionId from the StartBatchJob response when the job ran for the first time.
1292
1296
/// This member is required.
1293
1297
publicvarexecutionId:Swift.String?
1294
-
/// The restart step information for the most recent restart operation.
1298
+
/// The step/procedure step information for a restart batch job operation.
@@ -2316,16 +2320,20 @@ public struct ListBatchJobRestartPointsInput: Swift.Sendable {
2316
2320
/// The unique identifier of the application.
2317
2321
/// This member is required.
2318
2322
publicvarapplicationId:Swift.String?
2319
-
/// The unique identifier of each batch job execution.
2323
+
/// The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for List Batch Job Restart Points operation.
2324
+
publicvarauthSecretsManagerArn:Swift.String?
2325
+
/// The unique identifier of the batch job execution.
@@ -2636,6 +2644,8 @@ public struct StartBatchJobInput: Swift.Sendable {
2636
2644
/// The unique identifier of the application associated with this batch job.
2637
2645
/// This member is required.
2638
2646
publicvarapplicationId:Swift.String?
2647
+
/// The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for Start Batch Job execution operation.
@@ -3031,7 +3046,7 @@ public struct GetEnvironmentOutput: Swift.Sendable {
3031
3046
/// The unique identifiers of the security groups assigned to this runtime environment.
3032
3047
/// This member is required.
3033
3048
publicvarsecurityGroupIds:[Swift.String]?
3034
-
/// The status of the runtime environment.
3049
+
/// The status of the runtime environment. If the Amazon Web Services Mainframe Modernization environment is missing a connection to the customer owned dependent resource, the status will be Unhealthy.
Copy file name to clipboardExpand all lines: Sources/Services/AWSRDS/Sources/AWSRDS/Models.swift
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8764,7 +8764,7 @@ public struct CreateEventSubscriptionOutput: Swift.Sendable {
8764
8764
}
8765
8765
}
8766
8766
8767
-
/// The GlobalClusterIdentifier already exists. Choose a new global database identifier (unique name) to create a new global database cluster.
8767
+
/// The GlobalClusterIdentifier already exists. Specify a new global database identifier (unique name) to create a new global database cluster or to rename an existing one.
8768
8768
public struct GlobalClusterAlreadyExistsFault: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
8769
8769
8770
8770
public struct Properties {
@@ -9009,6 +9009,8 @@ extension RDSClientTypes {
9009
9009
public var databaseName: Swift.String?
9010
9010
/// The deletion protection setting for the new global database cluster.
9011
9011
public var deletionProtection: Swift.Bool?
9012
+
/// The writer endpoint for the new global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.
9013
+
public var endpoint: Swift.String?
9012
9014
/// The Aurora database engine used by the global database cluster.
9013
9015
public var engine: Swift.String?
9014
9016
/// The life cycle type for the global cluster. For more information, see CreateGlobalCluster.
0 commit comments