Class ResourceAccessPolicy
- java.lang.Object
-
- software.amazon.awssdk.services.greengrass.model.ResourceAccessPolicy
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<ResourceAccessPolicy.Builder,ResourceAccessPolicy>
@Generated("software.amazon.awssdk:codegen") public final class ResourceAccessPolicy extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ResourceAccessPolicy.Builder,ResourceAccessPolicy>
A policy used by the function to access a resource.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceResourceAccessPolicy.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResourceAccessPolicy.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()Permissionpermission()The permissions that the Lambda function has to the resource.StringpermissionAsString()The permissions that the Lambda function has to the resource.StringresourceId()The ID of the resource.List<SdkField<?>>sdkFields()static Class<? extends ResourceAccessPolicy.Builder>serializableBuilderClass()ResourceAccessPolicy.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
permission
public final Permission permission()
The permissions that the Lambda function has to the resource. Can be one of ''rw'' (read/write) or ''ro'' (read-only).If the service returns an enum value that is not available in the current SDK version,
permissionwill returnPermission.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frompermissionAsString().- Returns:
- The permissions that the Lambda function has to the resource. Can be one of ''rw'' (read/write) or ''ro'' (read-only).
- See Also:
Permission
-
permissionAsString
public final String permissionAsString()
The permissions that the Lambda function has to the resource. Can be one of ''rw'' (read/write) or ''ro'' (read-only).If the service returns an enum value that is not available in the current SDK version,
permissionwill returnPermission.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frompermissionAsString().- Returns:
- The permissions that the Lambda function has to the resource. Can be one of ''rw'' (read/write) or ''ro'' (read-only).
- See Also:
Permission
-
resourceId
public final String resourceId()
The ID of the resource. (This ID is assigned to the resource when you create the resource definiton.)- Returns:
- The ID of the resource. (This ID is assigned to the resource when you create the resource definiton.)
-
toBuilder
public ResourceAccessPolicy.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<ResourceAccessPolicy.Builder,ResourceAccessPolicy>
-
builder
public static ResourceAccessPolicy.Builder builder()
-
serializableBuilderClass
public static Class<? extends ResourceAccessPolicy.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-