class Amazonite::Iam::PolicyParameter

Overview

Contains information about a policy parameter used to customize delegated permissions.

Defined in:

iam/policy_parameter.cr

Constructors

Instance Method Summary

Constructor Detail

def self.from_xml(node : XML::Node) : self #

[View source]
def self.new(name : String | Nil = nil, values : Array(String) | Nil = nil, type : PolicyParameterTypeEnum | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def name : String | Nil #

The name of the policy parameter.


[View source]
def name=(name : String | Nil) #

The name of the policy parameter.


[View source]
def to_query_params(prefix : String) : Array(Tuple(String, String)) #

[View source]
def type : PolicyParameterTypeEnum | Nil #

The data type of the policy parameter value.


[View source]
def type=(type : PolicyParameterTypeEnum | Nil) #

The data type of the policy parameter value.


[View source]
def validate! : Nil #

[View source]
def values : Array(String) | Nil #

The allowed values for the policy parameter.


[View source]
def values=(values : Array(String) | Nil) #

The allowed values for the policy parameter.


[View source]