Show / Hide Table of Contents

Interface CfnGitHubRepositoryPropsMixin.IS3Property

The S3 property type specifies information about the Amazon S3 bucket that contains the code to be committed to the new repository.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CodeStar
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnGitHubRepositoryPropsMixin.IS3Property
Syntax (vb)
Public Interface CfnGitHubRepositoryPropsMixin.IS3Property
Remarks

S3 is a property of the AWS::CodeStar::GitHubRepository resource.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.CodeStar;

             var s3Property = new S3Property {
                 Bucket = "bucket",
                 Key = "key",
                 ObjectVersion = "objectVersion"
             };

Synopsis

Properties

Bucket

The name of the Amazon S3 bucket that contains the ZIP file with the content to be committed to the new repository.

Key

The S3 object key or file name for the ZIP file.

ObjectVersion

The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket.

Properties

Bucket

The name of the Amazon S3 bucket that contains the ZIP file with the content to be committed to the new repository.

string? Bucket { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket

Key

The S3 object key or file name for the ZIP file.

string? Key { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key

ObjectVersion

The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket.

string? ObjectVersion { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion

Back to top Generated by DocFX