Interface CfnAccessorProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessorProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:59.856Z")
@Stability(Stable)
public interface CfnAccessorProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAccessor
.
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.managedblockchain.*; CfnAccessorProps cfnAccessorProps = CfnAccessorProps.builder() .accessorType("accessorType") // the properties below are optional .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAccessorProps
static final class
An implementation forCfnAccessorProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAccessorProps.Builder
builder()
The type of the accessor.getTags()
The tags assigned to the Accessor.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessorType
The type of the accessor.Currently, accessor type is restricted to
BILLING_TOKEN
. -
getTags
The tags assigned to the Accessor.For more information about tags, see Tagging Resources in the Amazon Managed Blockchain Ethereum Developer Guide , or Tagging Resources in the Amazon Managed Blockchain Hyperledger Fabric Developer Guide .
-
builder
- Returns:
- a
CfnAccessorProps.Builder
ofCfnAccessorProps
-