Interface CfnSinkMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSinkMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T21:55:30.332Z")
@Stability(Stable)
public interface CfnSinkMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSinkPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.oam.*;
Object policy;
CfnSinkMixinProps cfnSinkMixinProps = CfnSinkMixinProps.builder()
.name("name")
.policy(policy)
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSinkMixinPropsstatic final classAn implementation forCfnSinkMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A name for the sink.- See Also:
-
getPolicy
The IAM policy that grants permissions to source accounts to link to this sink.The policy can grant permission in the following ways:
- Include organization IDs or organization paths to permit all accounts in an organization
- Include account IDs to permit the specified accounts
- See Also:
-
getTags
An array of key-value pairs to apply to the sink.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnSinkMixinProps.BuilderofCfnSinkMixinProps
-