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 classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionCfnSourceCredential
(Construct scope, String id, CfnSourceCredentialProps props) Create a newAWS::CodeBuild::SourceCredential
.protected
CfnSourceCredential
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnSourceCredential
(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 theauthType
is BASIC_AUTH.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setAuthType
(String value) The type of authentication used by the credentials.void
setServerType
(String value) The type of source provider.void
For GitHub or GitHub Enterprise, this is the personal access token.void
setUsername
(String value) The Bitbucket username when theauthType
is 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, validateProperties
Methods inherited from class software.amazon.awscdk.core.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods 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:
inspect
in 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:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getCfnProperties
- Overrides:
getCfnProperties
in 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 theauthType
is BASIC_AUTH.This parameter is not valid for other types of source providers or connections.
-
setUsername
The Bitbucket username when theauthType
is BASIC_AUTH.This parameter is not valid for other types of source providers or connections.
-