Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ export class AWSServicesLifecycleTrackerInfraStack extends cdk.Stack {

// Create S3 bucket for CodeBuild source
const sourceBucket = new s3.Bucket(this, 'SourceBucket', {
bucketName: `aws-services-lifecycle-tracker-sources-${this.account}-${this.region}`,
bucketName: `aws-svc-lifecycle-src-${this.account}-${this.region}`,
removalPolicy: cdk.RemovalPolicy.DESTROY,
autoDeleteObjects: true,
// No lifecycle rules - keep source files indefinitely for CodeBuild
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,33 @@
"last_extraction": "",
"extraction_count": 0
},
"bedrock": {
"name": "Amazon Bedrock",
"documentation_urls": [
"https://docs.aws.amazon.com/bedrock/latest/userguide/model-lifecycle.html"
],
"extraction_focus": "Locate the 'Legacy and end-of-life (EOL) models' table. Extract ALL rows from this table. For each model, extract: model provider, model name, model ID, available regions, legacy date, EOL date, and public extended access start date. If a field contains a dash or is empty, set it to null. Include all models regardless of provider (Amazon, Anthropic, Meta, Cohere, Mistral, etc.).",
"schema_key": "models",
"item_properties": {
"name": "Model name (e.g., 'Claude 3 Haiku', 'Nova Premier')",
"identifier": "Model ID (e.g., 'anthropic.claude-3-haiku-20240307-v1:0')",
"provider": "Model provider (e.g., 'Amazon', 'Anthropic', 'Meta')",
"regions": "Available AWS regions",
"legacy_date": "Date model entered Legacy state",
"eol_date": "End-of-Life date",
"public_extended_access_date": "Public extended access start date"
},
"required_fields": [
"name",
"identifier",
"provider",
"legacy_date",
"eol_date"
],
"enabled": true,
"last_extraction": "",
"extraction_count": 0
},
"msk": {
"name": "Amazon MSK (Managed Streaming for Apache Kafka)",
"documentation_urls": [
Expand Down