Interface LoggingConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<LoggingConfig.Builder,LoggingConfig>
,SdkBuilder<LoggingConfig.Builder,LoggingConfig>
,SdkPojo
- Enclosing class:
- LoggingConfig
public static interface LoggingConfig.Builder extends SdkPojo, CopyableBuilder<LoggingConfig.Builder,LoggingConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LoggingConfig.Builder
logGroupName(String logGroupName)
The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers.LoggingConfig.Builder
logRoleArn(String logRoleArn)
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.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
logRoleArn
LoggingConfig.Builder logRoleArn(String logRoleArn)
The Amazon Resource Name (ARN) of the role that CloudFormation should assume when sending log entries to CloudWatch Logs.
- Parameters:
logRoleArn
- The Amazon Resource Name (ARN) of the role that CloudFormation should assume when sending log entries to CloudWatch Logs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logGroupName
LoggingConfig.Builder logGroupName(String logGroupName)
The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers.
- Parameters:
logGroupName
- The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-