Class: Aws::AuditManager::Types::FrameworkMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::FrameworkMetadata
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-auditmanager/types.rb
Overview
The metadata of a framework, such as the name, ID, or description.
Constant Summary collapse
- SENSITIVE =
[:name, :compliance_type]
Instance Attribute Summary collapse
-
#compliance_type ⇒ String
The compliance standard that’s associated with the framework.
-
#description ⇒ String
The description of the framework.
-
#logo ⇒ String
The logo that’s associated with the framework.
-
#name ⇒ String
The name of the framework.
Instance Attribute Details
#compliance_type ⇒ String
The compliance standard that’s associated with the framework. For example, this could be PCI DSS or HIPAA.
2566 2567 2568 2569 2570 2571 2572 2573 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 2566 class FrameworkMetadata < Struct.new( :name, :description, :logo, :compliance_type) SENSITIVE = [:name, :compliance_type] include Aws::Structure end |
#description ⇒ String
The description of the framework.
2566 2567 2568 2569 2570 2571 2572 2573 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 2566 class FrameworkMetadata < Struct.new( :name, :description, :logo, :compliance_type) SENSITIVE = [:name, :compliance_type] include Aws::Structure end |
#logo ⇒ String
The logo that’s associated with the framework.
2566 2567 2568 2569 2570 2571 2572 2573 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 2566 class FrameworkMetadata < Struct.new( :name, :description, :logo, :compliance_type) SENSITIVE = [:name, :compliance_type] include Aws::Structure end |
#name ⇒ String
The name of the framework.
2566 2567 2568 2569 2570 2571 2572 2573 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 2566 class FrameworkMetadata < Struct.new( :name, :description, :logo, :compliance_type) SENSITIVE = [:name, :compliance_type] include Aws::Structure end |