interface S3Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodeStar.CfnGitHubRepositoryPropsMixin.S3Property |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodestar#CfnGitHubRepositoryPropsMixin_S3Property |
Java | software.amazon.awscdk.cfnpropertymixins.services.codestar.CfnGitHubRepositoryPropsMixin.S3Property |
Python | aws_cdk.cfn_property_mixins.aws_codestar.CfnGitHubRepositoryPropsMixin.S3Property |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codestar » CfnGitHubRepositoryPropsMixin » S3Property |
The S3 property type specifies information about the Amazon S3 bucket that contains the code to be committed to the new repository.
S3 is a property of the AWS::CodeStar::GitHubRepository resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codestar as codestar } from '@aws-cdk/cfn-property-mixins';
const s3Property: codestar.CfnGitHubRepositoryPropsMixin.S3Property = {
bucket: 'bucket',
key: 'key',
objectVersion: 'objectVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the Amazon S3 bucket that contains the ZIP file with the content to be committed to the new repository. |
| key? | string | The S3 object key or file name for the ZIP file. |
| object | string | The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket. |
bucket?
Type:
string
(optional)
The name of the Amazon S3 bucket that contains the ZIP file with the content to be committed to the new repository.
key?
Type:
string
(optional)
The S3 object key or file name for the ZIP file.
objectVersion?
Type:
string
(optional)
The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket.

.NET
Go
Java
Python
TypeScript