com.gammarer.cdk.aws.secure_bucket.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-secure-bucket Show documentation
Show all versions of aws-secure-bucket Show documentation
This is a Simple S3 Secure Bucket.
/**
*
*
*
*
*
*
*
*
*
AWS Secure Bucket
*
* This is a Simple S3 Secure Bucket.
*
*
* - Bucket Access Control is Private
* - Public Read Access is false
* - Enforce SSL
* - All Block public access
* - Require encryption
*
*
*
Install
*
*
TypeScript
*
*
* npm install @gammarer/aws-secure-bucket
* # or
* yarn add @gammarer/aws-secure-bucket
*
*
*
Python
*
*
* pip install gammarer.aws-secure-bucket
*
*
*
C# / .Net
*
*
* dotnet add package Gammarer.CDK.AWS.SecureBucket
*
*
*
Java
*
* Add the following to pom.xml:
*
*
* <dependency>
* <groupId>com.gammarer</groupId>
* <artifactId>aws-secure-bucket</artifactId>
* </dependency>
*
*
*
Example
*
*
TypeScript
*
*
* import { SecureBucket } from '@gammarer/aws-secure-bucket';
*
* const bucket = new SecureBucket(stack, 'SecureBucket', {
* bucketName: 'example-secure-bucket',
* });
*
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
package com.gammarer.cdk.aws.secure_bucket;