Class IntegrationCredentials
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.apigatewayv2.IntegrationCredentials
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:09:58.115Z")
@Stability(Stable)
public abstract class IntegrationCredentials
extends software.amazon.jsii.JsiiObject
Credentials used for AWS Service integrations.
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.apigatewayv2.*; import software.amazon.awscdk.interfaces.iam.*; IRoleRef roleRef; IntegrationCredentials integrationCredentials = IntegrationCredentials.fromRole(roleRef);
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedprotectedIntegrationCredentials(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedIntegrationCredentials(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionstatic IntegrationCredentialsUse the specified role for integration requests.abstract StringThe ARN of the credentials.static IntegrationCredentialsUse the calling user's identity to call the integration.Methods 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, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
IntegrationCredentials
protected IntegrationCredentials(software.amazon.jsii.JsiiObjectRef objRef) -
IntegrationCredentials
protected IntegrationCredentials(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
IntegrationCredentials
@Stability(Stable) protected IntegrationCredentials()
-
-
Method Details
-
fromRole
Use the specified role for integration requests.- Parameters:
role- This parameter is required.
-
useCallerIdentity
Use the calling user's identity to call the integration. -
getCredentialsArn
The ARN of the credentials.
-