MCPcopy Index your code
hub / github.com/aws/aws-cli / __init__

Method __init__

awscli/customizations/cloudfront.py:177–186  ·  view source on GitHub ↗
(self, argument_table, help_text='')

Source from the content-addressed store, hash-verified

175
176class CreateDefaultRootObject(ExclusiveArgument):
177 def __init__(self, argument_table, help_text=''):
178 super(CreateDefaultRootObject, self).__init__(
179 'default-root-object',
180 argument_table,
181 help_text=help_text
182 or (
183 'The object that you want CloudFront to return (for example, '
184 'index.html) when a viewer request points to your root URL.'
185 ),
186 )
187
188 def add_to_params(self, parameters, value):
189 if value is not None:

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected