Skip to content

Commit

Permalink
Release v1.53.6 (2024-05-20) (#5264)
Browse files Browse the repository at this point in the history
Release v1.53.6 (2024-05-20)
===

### Service Client Updates
* `service/bedrock-agent`: Updates service API and documentation
* `service/bedrock-agent-runtime`: Updates service API and documentation
* `service/controltower`: Updates service API, documentation, and paginators
* `service/osis`: Updates service API and documentation
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
  * This release adds support for EngineLifecycleSupport on DBInstances, DBClusters, and GlobalClusters.
* `service/secretsmanager`: Updates service documentation
  * add v2 smoke tests and smithy smokeTests trait for SDK testing
  • Loading branch information
aws-sdk-go-automation committed May 20, 2024
1 parent 7a0e753 commit 4c997a5
Show file tree
Hide file tree
Showing 25 changed files with 4,143 additions and 101 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.53.6 (2024-05-20)
===

### Service Client Updates
* `service/bedrock-agent`: Updates service API and documentation
* `service/bedrock-agent-runtime`: Updates service API and documentation
* `service/controltower`: Updates service API, documentation, and paginators
* `service/osis`: Updates service API and documentation
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
* This release adds support for EngineLifecycleSupport on DBInstances, DBClusters, and GlobalClusters.
* `service/secretsmanager`: Updates service documentation
* add v2 smoke tests and smithy smokeTests trait for SDK testing

Release v1.53.5 (2024-05-17)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.53.5"
const SDKVersion = "1.53.6"
319 changes: 319 additions & 0 deletions models/apis/bedrock-agent-runtime/2023-07-26/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,37 @@
],
"type": "string"
},
"GuardrailAction": {
"enum": [
"INTERVENED",
"NONE"
],
"type": "string"
},
"GuardrailAssessment": {
"members": {
"contentPolicy": {
"shape": "GuardrailContentPolicyAssessment"
},
"sensitiveInformationPolicy": {
"shape": "GuardrailSensitiveInformationPolicyAssessment"
},
"topicPolicy": {
"shape": "GuardrailTopicPolicyAssessment"
},
"wordPolicy": {
"shape": "GuardrailWordPolicyAssessment"
}
},
"sensitive": true,
"type": "structure"
},
"GuardrailAssessmentList": {
"member": {
"shape": "GuardrailAssessment"
},
"type": "list"
},
"GuardrailConfiguration": {
"members": {
"guardrailId": {
Expand Down Expand Up @@ -658,6 +689,291 @@
"pattern": "^(([1-9][0-9]{0,7})|(DRAFT))$",
"type": "string"
},
"GuardrailContentFilter": {
"members": {
"action": {
"shape": "GuardrailContentPolicyAction"
},
"confidence": {
"shape": "GuardrailContentFilterConfidence"
},
"type": {
"shape": "GuardrailContentFilterType"
}
},
"sensitive": true,
"type": "structure"
},
"GuardrailContentFilterConfidence": {
"enum": [
"NONE",
"LOW",
"MEDIUM",
"HIGH"
],
"type": "string"
},
"GuardrailContentFilterList": {
"member": {
"shape": "GuardrailContentFilter"
},
"sensitive": true,
"type": "list"
},
"GuardrailContentFilterType": {
"enum": [
"INSULTS",
"HATE",
"SEXUAL",
"VIOLENCE",
"MISCONDUCT",
"PROMPT_ATTACK"
],
"type": "string"
},
"GuardrailContentPolicyAction": {
"enum": [
"BLOCKED"
],
"type": "string"
},
"GuardrailContentPolicyAssessment": {
"members": {
"filters": {
"shape": "GuardrailContentFilterList"
}
},
"sensitive": true,
"type": "structure"
},
"GuardrailCustomWord": {
"members": {
"action": {
"shape": "GuardrailWordPolicyAction"
},
"match": {
"shape": "String"
}
},
"sensitive": true,
"type": "structure"
},
"GuardrailCustomWordList": {
"member": {
"shape": "GuardrailCustomWord"
},
"sensitive": true,
"type": "list"
},
"GuardrailManagedWord": {
"members": {
"action": {
"shape": "GuardrailWordPolicyAction"
},
"match": {
"shape": "String"
},
"type": {
"shape": "GuardrailManagedWordType"
}
},
"sensitive": true,
"type": "structure"
},
"GuardrailManagedWordList": {
"member": {
"shape": "GuardrailManagedWord"
},
"sensitive": true,
"type": "list"
},
"GuardrailManagedWordType": {
"enum": [
"PROFANITY"
],
"type": "string"
},
"GuardrailPiiEntityFilter": {
"members": {
"action": {
"shape": "GuardrailSensitiveInformationPolicyAction"
},
"match": {
"shape": "String"
},
"type": {
"shape": "GuardrailPiiEntityType"
}
},
"sensitive": true,
"type": "structure"
},
"GuardrailPiiEntityFilterList": {
"member": {
"shape": "GuardrailPiiEntityFilter"
},
"sensitive": true,
"type": "list"
},
"GuardrailPiiEntityType": {
"enum": [
"ADDRESS",
"AGE",
"AWS_ACCESS_KEY",
"AWS_SECRET_KEY",
"CA_HEALTH_NUMBER",
"CA_SOCIAL_INSURANCE_NUMBER",
"CREDIT_DEBIT_CARD_CVV",
"CREDIT_DEBIT_CARD_EXPIRY",
"CREDIT_DEBIT_CARD_NUMBER",
"DRIVER_ID",
"EMAIL",
"INTERNATIONAL_BANK_ACCOUNT_NUMBER",
"IP_ADDRESS",
"LICENSE_PLATE",
"MAC_ADDRESS",
"NAME",
"PASSWORD",
"PHONE",
"PIN",
"SWIFT_CODE",
"UK_NATIONAL_HEALTH_SERVICE_NUMBER",
"UK_NATIONAL_INSURANCE_NUMBER",
"UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER",
"URL",
"USERNAME",
"US_BANK_ACCOUNT_NUMBER",
"US_BANK_ROUTING_NUMBER",
"US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER",
"US_PASSPORT_NUMBER",
"US_SOCIAL_SECURITY_NUMBER",
"VEHICLE_IDENTIFICATION_NUMBER"
],
"type": "string"
},
"GuardrailRegexFilter": {
"members": {
"action": {
"shape": "GuardrailSensitiveInformationPolicyAction"
},
"match": {
"shape": "String"
},
"name": {
"shape": "String"
},
"regex": {
"shape": "String"
}
},
"sensitive": true,
"type": "structure"
},
"GuardrailRegexFilterList": {
"member": {
"shape": "GuardrailRegexFilter"
},
"sensitive": true,
"type": "list"
},
"GuardrailSensitiveInformationPolicyAction": {
"enum": [
"BLOCKED",
"ANONYMIZED"
],
"type": "string"
},
"GuardrailSensitiveInformationPolicyAssessment": {
"members": {
"piiEntities": {
"shape": "GuardrailPiiEntityFilterList"
},
"regexes": {
"shape": "GuardrailRegexFilterList"
}
},
"sensitive": true,
"type": "structure"
},
"GuardrailTopic": {
"members": {
"action": {
"shape": "GuardrailTopicPolicyAction"
},
"name": {
"shape": "String"
},
"type": {
"shape": "GuardrailTopicType"
}
},
"sensitive": true,
"type": "structure"
},
"GuardrailTopicList": {
"member": {
"shape": "GuardrailTopic"
},
"sensitive": true,
"type": "list"
},
"GuardrailTopicPolicyAction": {
"enum": [
"BLOCKED"
],
"type": "string"
},
"GuardrailTopicPolicyAssessment": {
"members": {
"topics": {
"shape": "GuardrailTopicList"
}
},
"sensitive": true,
"type": "structure"
},
"GuardrailTopicType": {
"enum": [
"DENY"
],
"type": "string"
},
"GuardrailTrace": {
"members": {
"action": {
"shape": "GuardrailAction"
},
"inputAssessments": {
"shape": "GuardrailAssessmentList"
},
"outputAssessments": {
"shape": "GuardrailAssessmentList"
},
"traceId": {
"shape": "TraceId"
}
},
"sensitive": true,
"type": "structure"
},
"GuardrailWordPolicyAction": {
"enum": [
"BLOCKED"
],
"type": "string"
},
"GuardrailWordPolicyAssessment": {
"members": {
"customWords": {
"shape": "GuardrailCustomWordList"
},
"managedWordLists": {
"shape": "GuardrailManagedWordList"
}
},
"sensitive": true,
"type": "structure"
},
"Identifier": {
"max": 1024,
"min": 1,
Expand Down Expand Up @@ -1767,6 +2083,9 @@
"failureTrace": {
"shape": "FailureTrace"
},
"guardrailTrace": {
"shape": "GuardrailTrace"
},
"orchestrationTrace": {
"shape": "OrchestrationTrace"
},
Expand Down
Loading

0 comments on commit 4c997a5

Please sign in to comment.