Skip to content

Commit

Permalink
chore: Updates version to 0.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-swift-automation committed Mar 12, 2024
1 parent b301970 commit 46ddc60
Show file tree
Hide file tree
Showing 67 changed files with 4,457 additions and 784 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func addResolvedTargets() {
// MARK: - Generated

addDependencies(
clientRuntimeVersion: "0.42.0",
clientRuntimeVersion: "0.43.0",
crtVersion: "0.26.0"
)

Expand Down
2 changes: 1 addition & 1 deletion Package.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.37.0
0.38.0
2 changes: 1 addition & 1 deletion Sources/Services/AWSAPIGateway/models/Models.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15945,7 +15945,7 @@ extension APIGatewayClientTypes {
public var cacheTtlInSeconds: Swift.Int
/// Specifies whether responses should be cached and returned for requests. A cache cluster must be enabled on the stage for responses to be cached.
public var cachingEnabled: Swift.Bool
/// Specifies whether data trace logging is enabled for this method, which affects the log entries pushed to Amazon CloudWatch Logs.
/// Specifies whether data trace logging is enabled for this method, which affects the log entries pushed to Amazon CloudWatch Logs. This can be useful to troubleshoot APIs, but can result in logging sensitive data. We recommend that you don't enable this option for production APIs.
public var dataTraceEnabled: Swift.Bool
/// Specifies the logging level for this method, which affects the log entries pushed to Amazon CloudWatch Logs. Valid values are OFF, ERROR, and INFO. Choose ERROR to write only error-level entries to CloudWatch Logs, or choose INFO to include all ERROR events as well as extra informational events.
public var loggingLevel: Swift.String?
Expand Down
10 changes: 5 additions & 5 deletions Sources/Services/AWSAccessAnalyzer/AccessAnalyzerClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ extension AccessAnalyzerClient {

/// Performs the `GetFinding` operation on the `AccessAnalyzer` service.
///
/// Retrieves information about the specified finding.
/// Retrieves information about the specified finding. GetFinding and GetFindingV2 both use access-analyzer:GetFinding in the Action element of an IAM policy statement. You must have permission to perform the access-analyzer:GetFinding action.
///
/// - Parameter GetFindingInput : Retrieves a finding.
///
Expand Down Expand Up @@ -874,7 +874,7 @@ extension AccessAnalyzerClient {

/// Performs the `GetFindingV2` operation on the `AccessAnalyzer` service.
///
/// Retrieves information about the specified finding.
/// Retrieves information about the specified finding. GetFinding and GetFindingV2 both use access-analyzer:GetFinding in the Action element of an IAM policy statement. You must have permission to perform the access-analyzer:GetFinding action.
///
/// - Parameter GetFindingV2Input : [no documentation found]
///
Expand Down Expand Up @@ -1080,7 +1080,7 @@ extension AccessAnalyzerClient {

/// Performs the `ListAnalyzedResources` operation on the `AccessAnalyzer` service.
///
/// Retrieves a list of resources of the specified type that have been analyzed by the specified analyzer..
/// Retrieves a list of resources of the specified type that have been analyzed by the specified external access analyzer. This action is not supported for unused access analyzers.
///
/// - Parameter ListAnalyzedResourcesInput : Retrieves a list of resources that have been analyzed.
///
Expand Down Expand Up @@ -1233,7 +1233,7 @@ extension AccessAnalyzerClient {

/// Performs the `ListFindings` operation on the `AccessAnalyzer` service.
///
/// Retrieves a list of findings generated by the specified analyzer. To learn about filter keys that you can use to retrieve a list of findings, see [IAM Access Analyzer filter keys](https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html) in the IAM User Guide.
/// Retrieves a list of findings generated by the specified analyzer. ListFindings and ListFindingsV2 both use access-analyzer:ListFindings in the Action element of an IAM policy statement. You must have permission to perform the access-analyzer:ListFindings action. To learn about filter keys that you can use to retrieve a list of findings, see [IAM Access Analyzer filter keys](https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html) in the IAM User Guide.
///
/// - Parameter ListFindingsInput : Retrieves a list of findings generated by the specified analyzer.
///
Expand Down Expand Up @@ -1286,7 +1286,7 @@ extension AccessAnalyzerClient {

/// Performs the `ListFindingsV2` operation on the `AccessAnalyzer` service.
///
/// Retrieves a list of findings generated by the specified analyzer. To learn about filter keys that you can use to retrieve a list of findings, see [IAM Access Analyzer filter keys](https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html) in the IAM User Guide.
/// Retrieves a list of findings generated by the specified analyzer. ListFindings and ListFindingsV2 both use access-analyzer:ListFindings in the Action element of an IAM policy statement. You must have permission to perform the access-analyzer:ListFindings action. To learn about filter keys that you can use to retrieve a list of findings, see [IAM Access Analyzer filter keys](https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html) in the IAM User Guide.
///
/// - Parameter ListFindingsV2Input : [no documentation found]
///
Expand Down
6 changes: 3 additions & 3 deletions Sources/Services/AWSAccessAnalyzer/models/Models.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ extension AccessAnalyzerClientTypes.Access: Swift.Codable {
extension AccessAnalyzerClientTypes {
/// Contains information about actions that define permissions to check against a policy.
public struct Access: Swift.Equatable {
/// A list of actions for the access permissions.
/// A list of actions for the access permissions. Any strings that can be used as an action in an IAM policy can be used in the list of actions to check.
/// This member is required.
public var actions: [Swift.String]?

Expand Down Expand Up @@ -2424,7 +2424,7 @@ public struct CreateAnalyzerInput: Swift.Equatable {
public var configuration: AccessAnalyzerClientTypes.AnalyzerConfiguration?
/// An array of key-value pairs to apply to the analyzer.
public var tags: [Swift.String:Swift.String]?
/// The type of analyzer to create. Only ACCOUNT, ORGANIZATION, ACCOUNT_UNUSED_ACCESS, and ORGANIZTAION_UNUSED_ACCESS analyzers are supported. You can create only one analyzer per account per Region. You can create up to 5 analyzers per organization per Region.
/// The type of analyzer to create. Only ACCOUNT, ORGANIZATION, ACCOUNT_UNUSED_ACCESS, and ORGANIZATION_UNUSED_ACCESS analyzers are supported. You can create only one analyzer per account per Region. You can create up to 5 analyzers per organization per Region.
/// This member is required.
public var type: AccessAnalyzerClientTypes.ModelType?

Expand Down Expand Up @@ -8417,7 +8417,7 @@ extension AccessAnalyzerClientTypes.S3ExpressDirectoryBucketConfiguration: Swift
}

extension AccessAnalyzerClientTypes {
/// Proposed access control configuration for an Amazon S3 directory bucket. You can propose a configuration for a new Amazon S3 directory bucket or an existing Amazon S3 directory bucket that you own by specifying the Amazon S3 bucket policy. If the configuration is for an existing Amazon S3 directory bucket and you do not specify the Amazon S3 bucket policy, the access preview uses the existing policy attached to the directory bucket. If the access preview is for a new resource and you do not specify the Amazon S3 bucket policy, the access preview assumes an directory bucket without a policy. To propose deletion of an existing bucket policy, you can specify an empty string. For more information about bucket policy limits, see [Example bucket policies](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-security-iam-example-bucket-policies.html).
/// Proposed access control configuration for an Amazon S3 directory bucket. You can propose a configuration for a new Amazon S3 directory bucket or an existing Amazon S3 directory bucket that you own by specifying the Amazon S3 bucket policy. If the configuration is for an existing Amazon S3 directory bucket and you do not specify the Amazon S3 bucket policy, the access preview uses the existing policy attached to the directory bucket. If the access preview is for a new resource and you do not specify the Amazon S3 bucket policy, the access preview assumes an directory bucket without a policy. To propose deletion of an existing bucket policy, you can specify an empty string. For more information about Amazon S3 directory bucket policies, see [Example directory bucket policies for S3 Express One Zone](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-security-iam-example-bucket-policies.html).
public struct S3ExpressDirectoryBucketConfiguration: Swift.Equatable {
/// The proposed bucket policy for the Amazon S3 directory bucket.
public var bucketPolicy: Swift.String?
Expand Down
14 changes: 7 additions & 7 deletions Sources/Services/AWSAppConfig/AppConfigClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ extension AppConfigClient {
/// * For a custom Amazon SQS notification extension, enter the ARN of an Amazon SQS message queue in the Uri field.
///
///
/// For more information about extensions, see [Working with AppConfig extensions](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
/// For more information about extensions, see [Extending workflows](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
///
/// - Parameter CreateExtensionInput : [no documentation found]
///
Expand Down Expand Up @@ -431,7 +431,7 @@ extension AppConfigClient {

/// Performs the `CreateExtensionAssociation` operation on the `AmazonAppConfig` service.
///
/// When you create an extension or configure an Amazon Web Services authored extension, you associate the extension with an AppConfig application, environment, or configuration profile. For example, you can choose to run the AppConfig deployment events to Amazon SNS Amazon Web Services authored extension and receive notifications on an Amazon SNS topic anytime a configuration deployment is started for a specific application. Defining which extension to associate with an AppConfig resource is called an extension association. An extension association is a specified relationship between an extension and an AppConfig resource, such as an application or a configuration profile. For more information about extensions and associations, see [Working with AppConfig extensions](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
/// When you create an extension or configure an Amazon Web Services authored extension, you associate the extension with an AppConfig application, environment, or configuration profile. For example, you can choose to run the AppConfig deployment events to Amazon SNS Amazon Web Services authored extension and receive notifications on an Amazon SNS topic anytime a configuration deployment is started for a specific application. Defining which extension to associate with an AppConfig resource is called an extension association. An extension association is a specified relationship between an extension and an AppConfig resource, such as an application or a configuration profile. For more information about extensions and associations, see [Extending workflows](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
///
/// - Parameter CreateExtensionAssociationInput : [no documentation found]
///
Expand Down Expand Up @@ -1220,7 +1220,7 @@ extension AppConfigClient {

/// Performs the `GetExtensionAssociation` operation on the `AmazonAppConfig` service.
///
/// Returns information about an AppConfig extension association. For more information about extensions and associations, see [Working with AppConfig extensions](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
/// Returns information about an AppConfig extension association. For more information about extensions and associations, see [Extending workflows](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
///
/// - Parameter GetExtensionAssociationInput : [no documentation found]
///
Expand Down Expand Up @@ -1559,7 +1559,7 @@ extension AppConfigClient {

/// Performs the `ListExtensionAssociations` operation on the `AmazonAppConfig` service.
///
/// Lists all AppConfig extension associations in the account. For more information about extensions and associations, see [Working with AppConfig extensions](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
/// Lists all AppConfig extension associations in the account. For more information about extensions and associations, see [Extending workflows](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
///
/// - Parameter ListExtensionAssociationsInput : [no documentation found]
///
Expand Down Expand Up @@ -1607,7 +1607,7 @@ extension AppConfigClient {

/// Performs the `ListExtensions` operation on the `AmazonAppConfig` service.
///
/// Lists all custom and Amazon Web Services authored AppConfig extensions in the account. For more information about extensions, see [Working with AppConfig extensions](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
/// Lists all custom and Amazon Web Services authored AppConfig extensions in the account. For more information about extensions, see [Extending workflows](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
///
/// - Parameter ListExtensionsInput : [no documentation found]
///
Expand Down Expand Up @@ -2156,7 +2156,7 @@ extension AppConfigClient {

/// Performs the `UpdateExtension` operation on the `AmazonAppConfig` service.
///
/// Updates an AppConfig extension. For more information about extensions, see [Working with AppConfig extensions](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
/// Updates an AppConfig extension. For more information about extensions, see [Extending workflows](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
///
/// - Parameter UpdateExtensionInput : [no documentation found]
///
Expand Down Expand Up @@ -2208,7 +2208,7 @@ extension AppConfigClient {

/// Performs the `UpdateExtensionAssociation` operation on the `AmazonAppConfig` service.
///
/// Updates an association. For more information about extensions and associations, see [Working with AppConfig extensions](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
/// Updates an association. For more information about extensions and associations, see [Extending workflows](https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html) in the AppConfig User Guide.
///
/// - Parameter UpdateExtensionAssociationInput : [no documentation found]
///
Expand Down
Loading

0 comments on commit 46ddc60

Please sign in to comment.