# private access

Published articles for private access.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Extend your data perimeter to the AWS Management Console with Private Access

DevFeed: [Extend your data perimeter to the AWS Management Console with Private Access](<https://devfeed.tech/articles/extend-your-data-perimeter-to-the-aws-management-console-with-private-access-4680.md>)

Original publisher: [Read original article](<https://aws.amazon.com/blogs/security/extend-your-data-perimeter-to-the-aws-management-console-with-private-access/>)

Author: Madhur Kulkarni

Published: 2026-08-28T18:53:57Z

Content type: article

Language: en

Sources: [AWS Security Blog](<https://devfeed.tech/sources/aws-security-blog.md>)

Topics: [AWS Management Console](<https://devfeed.tech/topics/aws-management-console.md>), [VPC](<https://devfeed.tech/topics/vpc.md>), [network security](<https://devfeed.tech/topics/network-security.md>), [Authentication](<https://devfeed.tech/topics/authentication.md>), [Amazon Web Services](<https://devfeed.tech/topics/aws.md>), [Virtual Private Network](<https://devfeed.tech/topics/vpn.md>), [Amazon EC2](<https://devfeed.tech/topics/amazon-ec2.md>), [Amazon WorkSpaces](<https://devfeed.tech/topics/amazon-workspaces.md>)

Tags: [advanced-300](<https://devfeed.tech/tags/advanced-300.md>), [authentication](<https://devfeed.tech/tags/authentication.md>), [aws](<https://devfeed.tech/tags/aws.md>), [aws-management-console](<https://devfeed.tech/tags/aws-management-console.md>), [aws-organizations](<https://devfeed.tech/tags/aws-organizations.md>), [iam](<https://devfeed.tech/tags/iam.md>), [network](<https://devfeed.tech/tags/network.md>), [network-security](<https://devfeed.tech/tags/network-security.md>), [private-access](<https://devfeed.tech/tags/private-access.md>), [routing](<https://devfeed.tech/tags/routing.md>), [security](<https://devfeed.tech/tags/security.md>), [security-blog](<https://devfeed.tech/tags/security-blog.md>), [security-identity-compliance](<https://devfeed.tech/tags/security-identity-compliance.md>), [technical-how-to](<https://devfeed.tech/tags/technical-how-to.md>), [vpc](<https://devfeed.tech/tags/vpc.md>)

### AI overview

AWS Management Console Private Access is generally available with support for VPCs without internet connectivity. Supported console traffic, including authentication flows, static assets, console-only APIs, and AWS service API calls, can route through VPC endpoints, eliminating the need for an internet gateway, NAT gateway, or public-internet route.

### Source excerpt

Organizations in regulated industries such as financial services, government, defense, and healthcare restrict their sensitive workloads to isolated network environments with no access to the public internet. Until now, customers could restrict AWS Management Console access to authorized AWS accounts and corporate networks, but the console itself required internet connectivity. This was creating tension between [...]

## How to Set Up Azure Private Link for CockroachDB

DevFeed: [How to Set Up Azure Private Link for CockroachDB](<https://devfeed.tech/articles/no-prying-eyes-how-to-set-up-azure-private-link-for-cockroachdb-23753.md>)

Original publisher: [Read original article](<https://cockroachlabs.com/blog/azure-private-link-cockroachdb-setup>)

Author: Alejandro Infanzon

Published: 2026-05-05T00:00:00Z

Content type: tutorial

Language: en

Sources: [Cockroach Labs](<https://devfeed.tech/sources/cockroach-labs.md>)

Topics: [Azure](<https://devfeed.tech/topics/azure.md>), [Cockroach Labs](<https://devfeed.tech/topics/cockroach-labs.md>), [Network](<https://devfeed.tech/topics/network.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [Latency](<https://devfeed.tech/topics/latency.md>)

Tags: [azure](<https://devfeed.tech/tags/azure.md>), [cockroachdb](<https://devfeed.tech/tags/cockroachdb.md>), [dns](<https://devfeed.tech/tags/dns.md>), [guide](<https://devfeed.tech/tags/guide.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [network](<https://devfeed.tech/tags/network.md>), [private-access](<https://devfeed.tech/tags/private-access.md>), [tls](<https://devfeed.tech/tags/tls.md>)

### AI overview

A step-by-step guide to configuring Azure Private Link for CockroachDB Cloud. It covers network and permission prerequisites, private endpoint creation and validation, DNS forwarding, subnet capacity, and TLS-related DNS requirements.

### Source excerpt

When your application talks to your database over the public internet, every hop is one more place something can go wrong, leading to potential latency, misconfiguration, or (worst case) exposure.

## Object Oriented Programming in Go

DevFeed: [Object Oriented Programming in Go](<https://devfeed.tech/articles/object-oriented-programming-in-go-22058.md>)

Original publisher: [Read original article](<https://www.ardanlabs.com/blog/2013/07/object-oriented-programming-in-go.html>)

Published: 2013-07-10T00:00:00Z

Content type: tutorial

Language: en

Sources: [William Kennedy](<https://devfeed.tech/sources/william-kennedy.md>)

Topics: [Go Language](<https://devfeed.tech/topics/go-language.md>), [Object-oriented programming (OOP)](<https://devfeed.tech/topics/oop.md>), [Polymorphism](<https://devfeed.tech/topics/polymorphism.md>), [interfaces](<https://devfeed.tech/topics/interfaces.md>)

Tags: [ardan-labs](<https://devfeed.tech/tags/ardan-labs.md>), [blog](<https://devfeed.tech/tags/blog.md>), [embedding](<https://devfeed.tech/tags/embedding.md>), [function](<https://devfeed.tech/tags/function.md>), [go](<https://devfeed.tech/tags/go.md>), [go-programming](<https://devfeed.tech/tags/go-programming.md>), [golang](<https://devfeed.tech/tags/golang.md>), [inheritance](<https://devfeed.tech/tags/inheritance.md>), [interfaces](<https://devfeed.tech/tags/interfaces.md>), [oop](<https://devfeed.tech/tags/oop.md>), [polymorphism](<https://devfeed.tech/tags/polymorphism.md>), [private-access](<https://devfeed.tech/tags/private-access.md>), [programming](<https://devfeed.tech/tags/programming.md>), [properties](<https://devfeed.tech/tags/properties.md>), [structure](<https://devfeed.tech/tags/structure.md>)

### AI overview

This tutorial explains object-oriented programming in Go, focusing on how composition, embedding, and interfaces provide polymorphic behavior without traditional inheritance. It also introduces structs, field visibility, and methods through Cat, Dog, and Animal examples.

### Source excerpt

Someone asked a question on the forum today on how to gain the benefits of inheritance without embedding. It is really important for everyone to think in terms of Go and not the languages they are leaving behind. I can't tell you much code I removed from my early Go implementations because it wasn't necessary. The language designers have years of experience and knowledge. Hindsight is helping to create a language that is fast, lean and really fun to code in.