{"library":"pulumi-aws-native","title":"Pulumi AWS Native","description":"Pulumi AWS Native, currently at version 1.61.0, is a Python package for defining and managing AWS resources using the AWS Cloud Control API. It provides same-day access to new AWS resources and properties as they become available in Cloud Control. The library maintains a rapid release cadence, often with multiple updates per month, reflecting its close alignment with AWS Cloud Control API updates.","language":"python","status":"active","last_verified":"Thu Apr 16","install":{"commands":["pip install pulumi-aws-native"],"cli":null},"imports":["import pulumi_aws_native as aws_native","import pulumi_aws_native.s3 as s3"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import pulumi\nimport pulumi_aws_native as aws_native\nimport os\n\n# Configure AWS region (e.g., via pulumi config set aws-native:region us-east-1\n# or AWS_REGION environment variable) and AWS credentials.\n# For quickstart, ensure AWS CLI is configured or env vars are set:\n# export AWS_ACCESS_KEY_ID='YOUR_ACCESS_KEY'\n# export AWS_SECRET_ACCESS_KEY='YOUR_SECRET_KEY'\n# export AWS_REGION='us-east-1'\n\n# Create an AWS S3 Bucket\n# Pulumi will automatically assign a unique name if 'my-bucket' is used as the URN part.\n# You can also pass a specific bucket_name property if a fixed name is required (must be globally unique).\nbucket = aws_native.s3.Bucket(\"my-first-aws-native-bucket\",\n    bucket_name=\"my-unique-pulumi-bucket-name-12345\") # Use a unique name for actual deployment\n\n# Export the name of the bucket\npulumi.export(\"bucket_name\", bucket.bucket_name)\n\n# To deploy this, navigate to your project directory in the terminal and run:\n# pulumi up\n","lang":"python","description":"This quickstart program provisions a new S3 bucket using the `pulumi-aws-native` provider. It demonstrates how to import the provider and create a basic AWS resource, then exports the bucket's name. Remember to configure your AWS credentials and region before running `pulumi up`.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}