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.
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
Remarks
Key
The S3 object key or file name for the ZIP file.
string? Key { get; }
Property Value
Remarks
ObjectVersion
The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket.
string? ObjectVersion { get; }