The type returned from IArtifacts#bind.
Inheritance
ArtifactsConfig
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CodeBuild
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ArtifactsConfig : IArtifactsConfig
Syntax (vb)
Public Class ArtifactsConfig Implements IArtifactsConfig
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodeBuild;
var artifactsConfig = new ArtifactsConfig {
ArtifactsProperty = new ArtifactsProperty {
Type = "type",
// the properties below are optional
ArtifactIdentifier = "artifactIdentifier",
EncryptionDisabled = false,
Location = "location",
Name = "name",
NamespaceType = "namespaceType",
OverrideArtifactName = false,
Packaging = "packaging",
Path = "path"
}
};
Synopsis
Constructors
Properties
Constructors
ArtifactsConfig()
The type returned from IArtifacts#bind.
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodeBuild;
var artifactsConfig = new ArtifactsConfig {
ArtifactsProperty = new ArtifactsProperty {
Type = "type",
// the properties below are optional
ArtifactIdentifier = "artifactIdentifier",
EncryptionDisabled = false,
Location = "location",
Name = "name",
NamespaceType = "namespaceType",
OverrideArtifactName = false,
Packaging = "packaging",
Path = "path"
}
};
Properties
ArtifactsProperty
The low-level CloudFormation artifacts property.
public CfnProject.IArtifactsProperty ArtifactsProperty { get; set; }