Interface CfnCluster.AuthorizerLogsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.AuthorizerLogsProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.AuthorizerLogsProperty
extends software.amazon.jsii.JsiiSerializable
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.msk.*;
AuthorizerLogsProperty authorizerLogsProperty = AuthorizerLogsProperty.builder()
.cloudWatchLogs(CloudWatchLogsProperty.builder()
.enabled(false)
// the properties below are optional
.logGroup("logGroup")
.build())
.firehose(FirehoseProperty.builder()
.enabled(false)
// the properties below are optional
.deliveryStream("deliveryStream")
.build())
.s3(S3Property.builder()
.enabled(false)
// the properties below are optional
.bucket("bucket")
.prefix("prefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.AuthorizerLogsPropertystatic final classAn implementation forCfnCluster.AuthorizerLogsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnCluster.CloudWatchLogsPropertydefault ObjectReturns union: eitherIResolvableorCfnCluster.FirehosePropertydefault ObjectgetS3()Returns union: eitherIResolvableorCfnCluster.S3PropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudWatchLogs
Returns union: eitherIResolvableorCfnCluster.CloudWatchLogsProperty- See Also:
-
getFirehose
Returns union: eitherIResolvableorCfnCluster.FirehoseProperty- See Also:
-
getS3
Returns union: eitherIResolvableorCfnCluster.S3Property- See Also:
-
builder
-