Interface CfnRegistryRecord.RegistryRecordOAuthCredentialProviderProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRegistryRecord.RegistryRecordOAuthCredentialProviderProperty.Jsii$Proxy
- Enclosing class:
CfnRegistryRecord
@Stability(Stable)
public static interface CfnRegistryRecord.RegistryRecordOAuthCredentialProviderProperty
extends software.amazon.jsii.JsiiSerializable
OAuth credential provider configuration.
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.agentregistry.*;
RegistryRecordOAuthCredentialProviderProperty registryRecordOAuthCredentialProviderProperty = RegistryRecordOAuthCredentialProviderProperty.builder()
.providerArn("providerArn")
// the properties below are optional
.customParameters(Map.of(
"customParametersKey", "customParameters"))
.grantType("grantType")
.scopes(List.of("scopes"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRegistryRecord.RegistryRecordOAuthCredentialProviderProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProviderArn
The ARN of the OAuth credential provider.- See Also:
-
getCustomParameters
Additional custom parameters for the OAuth flow.Returns union: either
IResolvableor Mapinvalid input: '<'String,String>- See Also:
-
getGrantType
- See Also:
-
getScopes
OAuth scopes to request.- See Also:
-
builder
@Stability(Stable) static CfnRegistryRecord.RegistryRecordOAuthCredentialProviderProperty.Builder builder()
-