Class DefaultEncryptedResourceFactories

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.iam.DefaultEncryptedResourceFactories
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-19T12:55:06.059Z") @Stability(Stable) public class DefaultEncryptedResourceFactories extends software.amazon.jsii.JsiiObject
Default factories for encrypted resources.

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.iam.*;
 DefaultEncryptedResourceFactories defaultEncryptedResourceFactories = new DefaultEncryptedResourceFactories();
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
     
     
    protected
    DefaultEncryptedResourceFactories(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    DefaultEncryptedResourceFactories(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    get(String type)
    Get the default factory for a given CloudFormation resource type.
    static Boolean
    has(String type)
    Check if a default factory is registered for a given CloudFormation resource type.
    static void
    Register a default factory for a given CloudFormation resource type.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • DefaultEncryptedResourceFactories

      protected DefaultEncryptedResourceFactories(software.amazon.jsii.JsiiObjectRef objRef)
    • DefaultEncryptedResourceFactories

      protected DefaultEncryptedResourceFactories(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • DefaultEncryptedResourceFactories

      @Stability(Stable) public DefaultEncryptedResourceFactories()
  • Method Details

    • get

      @Stability(Stable) @Nullable public static IEncryptedResourceFactory get(@NotNull String type)
      Get the default factory for a given CloudFormation resource type.

      Parameters:
      type - the CloudFormation resource type (e.g., 'AWS::DynamoDB::Table'). This parameter is required.
    • has

      @Stability(Stable) @NotNull public static Boolean has(@NotNull String type)
      Check if a default factory is registered for a given CloudFormation resource type.

      Parameters:
      type - the CloudFormation resource type (e.g., 'AWS::DynamoDB::Table'). This parameter is required.
    • set

      @Stability(Stable) public static void set(@NotNull String type, @NotNull IEncryptedResourceFactory factory)
      Register a default factory for a given CloudFormation resource type.

      Parameters:
      type - the CloudFormation resource type (e.g., 'AWS::DynamoDB::Table'). This parameter is required.
      factory - the factory to register for this resource type. This parameter is required.