Class CfnSourceCredential
- All Implemented Interfaces:
IConstruct,IDependable,IInspectable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct
AWS::CodeBuild::SourceCredential.
Information about the credentials for a GitHub, GitHub Enterprise, or Bitbucket repository. We strongly recommend that you use AWS Secrets Manager to store your credentials. If you use Secrets Manager , you must have secrets in your secrets manager. For more information, see Using Dynamic References to Specify Template Values .
For security purposes, do not use plain text in your AWS CloudFormation template to store your credentials.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.codebuild.*;
CfnSourceCredential cfnSourceCredential = CfnSourceCredential.Builder.create(this, "MyCfnSourceCredential")
.authType("authType")
.serverType("serverType")
.token("token")
// the properties below are optional
.username("username")
.build();
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionCfnSourceCredential(Construct scope, String id, CfnSourceCredentialProps props) Create a newAWS::CodeBuild::SourceCredential.protectedCfnSourceCredential(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnSourceCredential(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe type of authentication used by the credentials.The type of source provider.getToken()For GitHub or GitHub Enterprise, this is the personal access token.The Bitbucket username when theauthTypeis BASIC_AUTH.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetAuthType(String value) The type of authentication used by the credentials.voidsetServerType(String value) The type of source provider.voidFor GitHub or GitHub Enterprise, this is the personal access token.voidsetUsername(String value) The Bitbucket username when theauthTypeis BASIC_AUTH.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.core.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnSourceCredential
protected CfnSourceCredential(software.amazon.jsii.JsiiObjectRef objRef) -
CfnSourceCredential
protected CfnSourceCredential(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnSourceCredential
@Stability(Stable) public CfnSourceCredential(@NotNull Construct scope, @NotNull String id, @NotNull CfnSourceCredentialProps props) Create a newAWS::CodeBuild::SourceCredential.- Parameters:
scope-- scope in which this resource is defined.
id-- scoped id of the resource.
props-- resource properties.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getAuthType
The type of authentication used by the credentials.Valid options are OAUTH, BASIC_AUTH, or PERSONAL_ACCESS_TOKEN.
-
setAuthType
The type of authentication used by the credentials.Valid options are OAUTH, BASIC_AUTH, or PERSONAL_ACCESS_TOKEN.
-
getServerType
The type of source provider.The valid options are GITHUB, GITHUB_ENTERPRISE, or BITBUCKET.
-
setServerType
The type of source provider.The valid options are GITHUB, GITHUB_ENTERPRISE, or BITBUCKET.
-
getToken
For GitHub or GitHub Enterprise, this is the personal access token.For Bitbucket, this is the app password.
-
setToken
For GitHub or GitHub Enterprise, this is the personal access token.For Bitbucket, this is the app password.
-
getUsername
The Bitbucket username when theauthTypeis BASIC_AUTH.This parameter is not valid for other types of source providers or connections.
-
setUsername
The Bitbucket username when theauthTypeis BASIC_AUTH.This parameter is not valid for other types of source providers or connections.
-