Package software.amazon.awscdk
Interface CfnTypeActivation.LoggingConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTypeActivation.LoggingConfigProperty.Jsii$Proxy
- Enclosing class:
CfnTypeActivation
@Stability(Stable)
public static interface CfnTypeActivation.LoggingConfigProperty
extends software.amazon.jsii.JsiiSerializable
Contains logging configuration information for an extension.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; LoggingConfigProperty loggingConfigProperty = LoggingConfigProperty.builder() .logGroupName("logGroupName") .logRoleArn("logRoleArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTypeActivation.LoggingConfigProperty
static final class
An implementation forCfnTypeActivation.LoggingConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers.default String
The Amazon Resource Name (ARN) of the role that CloudFormation should assume when sending log entries to CloudWatch Logs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLogGroupName
The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers.- See Also:
-
getLogRoleArn
The Amazon Resource Name (ARN) of the role that CloudFormation should assume when sending log entries to CloudWatch Logs.- See Also:
-
builder
-